PDA

View Full Version : Date in Meta Description - How to remove this date ?



jayden
10-12-2017, 07:09 AM
I have a Wordpress based website with Yoast SEO Plugin ... Whenever I search my desired keyword on google when It show results in SERP a date is automatically added just before meta description ... I want to remove this date ... Please help !!!

crackersguru
10-13-2017, 01:32 AM
While it's possible to remove date information, it's not always a simple process. There are a handful of plugins that offer date removal features like,
- WP Date Remover
- WP Super Cache
- Form Maker by WD – user-friendly drag & drop Form Builder plugin

If the plugin directory doesn't offer what you need, you or your developer can manually remove dates from your theme.

deepakrajput
10-13-2017, 03:10 AM
No you can't because it shows when your website was indexed.

oneyestech
10-13-2017, 03:32 AM
To eliminate the date display on the Yoast SEO plugin add this to the theme’s functions.php file:

add_filter( 'wpseo_show_date_in_snippet_preview', false);

OR

add_filter( 'wpseo_show_date_in_snippet_preview', '__return_false' );

jayden
10-13-2017, 05:42 AM
Thank you all ... I will try all the recommended methods