通过禁用WordPress RSS源函数.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过禁用WordPress RSS源函数.php相关的知识,希望对你有一定的参考价值。
http://bueltge.de/wordpress-feeds-deaktivieren/794/
/** * disable feed */ function fb_disable_feed() { wp_die( __('Kein Feed erreichbar, besuchen Sie doch bitte die <a href="'. get_bloginfo('url') .'">Startseite</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);
以上是关于通过禁用WordPress RSS源函数.php的主要内容,如果未能解决你的问题,请参考以下文章