How do I remove the date from the google search results of my posts?

Is this related to WordPress or is it theme-specific?

3 Answers
3

Paste this code in functions.php

add_filter( 'wpseo_show_date_in_snippet_preview', false); //Returning false on this will prevent the date from showing up in the snippet preview.

Note:
WordPress SEO api

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *