How to Disable the feeds for a site: Wordpress

时间:2016-01-09 14:44:47

标签: wordpress feed feeds

I have a site built in wordpress, whenever i click on a menu link continuously for two three times it takes me to a link www.mysite.com/feed. why this is happening and how i can overcome this issue.

I have tried with some plugin to to restrict the feeds but they have only redirect it to 404 page.

Any help will be appropriated

1 个答案:

答案 0 :(得分:0)

打开位于themes文件夹中的functions.php并添加以下代码:

function fb_disable_feed() {
wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
}

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);

这应该有效:D

相关问题