如何關閉wordpress的RSS功能
2 回答

www說
TA貢獻1775條經驗 獲得超8個贊
到WP后臺,修改主題的functions.php,到文件最后添加以下代碼:
代碼如下 復制代碼
/**
* Disable Our Feed Urls
*/
function disable_our_feeds() {
wp_die( __('<strong>Error:</strong> No RSS Feed Available, Please visit our homepage.') );
}
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功能就完全關閉了。
- 2 回答
- 0 關注
- 734 瀏覽
添加回答
舉報
0/150
提交
取消