Site logo

Archived topic

display tags under the title

5 replies · Started by takkularapsis on November 16, 2022

Viewing posts 1–6 of 6

Hi,

I would like to move tags to under the title.
I have tryis php snippets i found from forum but had no luck with it.

Hi,

Thanks,

Yes, under that one.

Which one? Under the Headline in the Page Hero or the screenshot I shared?

Sorry, yes i knew it wasnt clear :) So under screenshot you shared.

I see. Thank you for clarifying.

Can you try adding this Snippet?:

add_filter( 'generate_header_entry_meta_items', function() {
    return array(
        'author',
        'date',
        'categories',
        'tags',
    );
} );

add_filter( 'generate_footer_entry_meta_items', function( $items ) {
    return array_diff( $items, [ 'categories', 'tags' ] );
} );

Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets

This archived topic is closed to new replies.