Also, I used this script in my theme functions PHP: function `jl_remove_post_dates() {
add_filter(‘the_date’, ‘__return_false’);
add_filter(‘the_time’, ‘__return_false’);
add_filter(‘the_modified_date’, ‘__return_false’);
} add_action(‘loop_start’, ‘jl_remove_post_dates’);`
But I have since removed it – would have done anything?