WordPress技巧:如何关闭RSS Feed订阅

自从 Google reader 关闭(即使没有关闭,伟大母亲的大陆地区也无法访问),就再也没有使用过 RSS 阅读器。最初的时候也曾找过替代产品,可惜再也找不到那种愉快阅读的感觉。

如果你不想站点被采集,或者用户通过第三方媒介阅读你的内容,来吧,关闭 RSS。

将下列代码放置到主题模版函数 functions.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);
本文所提供的资源来自网友分享,仅供学习交流,请勿用于商业用途。
站长萌萌哒 » WordPress技巧:如何关闭RSS Feed订阅

发表回复

优质站长资源尽在站长萌萌哒

立即登录 免费注册
[erphp_weixin_scan]