Archived topic
display tags under the title
5 replies · Started by takkularapsis on November 16, 2022
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 Takkularapsis,
Which location are you wanting to place it in? Is it under the Headline in the Page Hero or under this one?: https://share.getcloudapp.com/jkuOdb2P
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