I have some error 404 on WMT
events/2016-10/
events/2016-12/
events/2016-07/
How to remove its? Redirect 301 OK but for the future ?
Hey unicaweb,
Please add following code to functions.php file in Appearance > Editor to disable feeds
function fb_disable_feed() {
wp_die( __('No feed available,please visit our homepage!') );
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
add_action('do_feed_rss2_comments', 'fb_disable_feed', 1);
add_action('do_feed_atom_comments', 'fb_disable_feed', 1);
Best regards,
Yigit