Hi,
I am trying to remove the dates on google snippet but it is not working correctly.
I already tried by adding below code to functions.php.
add_filter( 'wpseo_show_date_in_snippet_preview', false);
Also i found these code somewhere. Do you think this will work ?
function remove_post_dates() {
add_filter('the_time', '__return_false');
add_filter('get_the_time', '__return_false');
add_filter('the_modified_time', '__return_false');
add_filter('get_the_modified_time', '__return_false');
add_filter('the_date', '__return_false');
add_filter('get_the_date', '__return_false');
add_filter('the_modified_date', '__return_false');
add_filter('get_the_modified_date', '__return_false');
add_filter('get_comment_date', '__return_false');
add_filter('get_comment_time', '__return_false');
}
add_action('loop_start', 'remove_post_dates');
This code might make lots of changes. So i want to make sure first.
Can you please help me to fix this.
Best Regards