如何在wordpress中關閉Feed功能
2 回答

慕慕森
TA貢獻1856條經驗 獲得超17個贊
將以下代碼片段添加到你的主題的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);
- 2 回答
- 0 關注
- 594 瀏覽
添加回答
舉報
0/150
提交
取消