Site logo

Archived topic

Remove post meta from below post

1 reply · Started by Alf on January 30, 2020

Viewing posts 1–2 of 2

Hi there,

I have added the suggested code snippet to move the post category to above the post text aligned with the date:

add_filter( ‘generate_header_entry_meta_items’, function() {
return array(
‘categories’,
‘date’,
‘author’,
);
} );

(adding it using child theme and functions.php).

However, the category is still visible below the post (both on single post and archive frontpage. Is there a way to filter this location out?

And is it possible to add a “,” between the category and post date?

Thanks again!

This archived topic is closed to new replies.