Archived topic
Remove post date from SERPS
1 reply · Started by Rostyslav on October 10, 2021
Hello!
How can I remove the post date from all my posts? I don´t want Google to diplay the date like this: https://ibb.co/cLpbjxw
(I am not using a blog module in generatepress. I want to remove the post-date with code)
Can this be a solution? :https://ibb.co/pjxhFW9
Thank!
Hi there,
Try this:
add_filter( 'generate_header_entry_meta_items', function( $items ) {
return array_diff( $items, array( 'date' ) );
} );
This PHP snippet removes the date without changing the order for the rest of the post meta items.
here's how to add PHP - https://docs.generatepress.com/article/adding-php/