Archived topic
post meta appearance
3 replies · Started by Chris on August 27, 2020
Hi,
I have added this code:
add_filter( 'generate_header_entry_meta_items', function( $items ) {
return array(
'author',
'date',
'categories',
);
} );
Which works great and displays 'by authorname date category' but how can change things so it appears as 'Written by authorname on date in category'
I have also disabled date archives in Yoast but the date still displays as a link- can that be disabled?
Many thanks
Chris
Hi there,
try the generate_inside_post_meta_item_output filter for adding content to the meta:
https://docs.generatepress.com/article/generate_inside_post_meta_item_output/
And removing date link:
https://docs.generatepress.com/article/generate_post_date_output/#remove-link-from-date
Thank you!
Glad to be of help