当我们使用WordPress建设好网站以后,站里的内容添加的越来越多,越来越丰富,我们辛辛苦苦建立起来的站不想被别人采集,或者用户通过第三方媒介阅读你的内容,那么今天我们介绍一个方法:关闭网站的 RSS Feed 订阅功能。
切换到主题目录,打开 funcctions.php 文件,加入以下代码:
1 2 3 4 5 6 7 8 9 10 11 | <?php //Disable Our Feed Urls function disable_our_feeds() { wp_redirect( home_url() ); } add_action('do_feed', 'disable_our_feeds', 1); add_action('do_feed_rdf', 'disable_our_feeds', 1); add_action('do_feed_rss', 'disable_our_feeds', 1); add_action('do_feed_rss2', 'disable_our_feeds', 1); add_action('do_feed_atom', 'disable_our_feeds', 1); ?> |