如何關(guān)閉wordpress的RSS功能
如何關(guān)閉wordpress的RSS功能
繁星點點滴滴
2019-05-14 09:08:44
TA貢獻1775條經(jīng)驗 獲得超8個贊
到WP后臺,修改主題的functions.php,到文件最后添加以下代碼:
代碼如下 復(fù)制代碼
/**
* 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功能就完全關(guān)閉了。
舉報