How do I remove the date from the google search results of my posts?
Is this related to WordPress or is it theme-specific?
How do I remove the date from the google search results of my posts?
Is this related to WordPress or is it theme-specific?
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