如何在wordpress中關閉Feed功能
如何在wordpress中關閉Feed功能
慕無忌1623718
2019-03-22 19:15:28
TA貢獻1818條經驗 獲得超8個贊
將以下代碼片段添加到你的主題的functions.php中即可。
function digwp_disable_feed() {
wp_die(__('<h1>Feed已經關閉, 請訪問網站<a href="'.get_bloginfo('url').'">首頁</a>!</h1>'));
}
add_action('do_feed', 'digwp_disable_feed', 1);
add_action('do_feed_rdf', 'digwp_disable_feed', 1);
add_action('do_feed_rss', 'digwp_disable_feed', 1);
add_action('do_feed_rss2', 'digwp_disable_feed', 1);
add_action('do_feed_atom', 'digwp_disable_feed', 1);
舉報