默认情况下,没有选项可以禁用WordPress中的RSS提要,因为RSS提要允许用户订阅您的博客文章。但是,在某些情况下,您可能需要关闭RSS源。您可以使用一些插件来执行此操作,但是只要有可能,我们总是尝试使用尽可能少的插件并使用我们自己的代码。
当有人尝试转到RSS feed链接(yoursite.com/feed/)时,通过将以下代码放在主题的functions.php文件(或特定于站点的插件)中,他们将收到一条消息,提示没有feed可用。
1个
2
3
4
5
6
7
8
9
10
11
|
function 1wd_disable_feed() { wp_die( __( 'No feed available,please visit our <a href="' . get_bloginfo( 'url' ) . '">homepage</a>!' ) ); } add_action( 'do_feed' , '1wd_disable_feed' , 1); add_action( 'do_feed_rdf' , '1wd_disable_feed' , 1); add_action( 'do_feed_rss' , '1wd_disable_feed' , 1); add_action( 'do_feed_rss2' , '1wd_disable_feed' , 1); add_action( 'do_feed_atom' , '1wd_disable_feed' , 1); add_action( 'do_feed_rss2_comments' , '1wd_disable_feed' , 1); add_action( 'do_feed_atom_comments' , '1wd_disable_feed' , 1); |
如果你还想要学习更多的网站建设技巧,请收藏网站www.shejiku.net
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260203.html