如何在wordpress中關(guān)閉Feed功能
如何在wordpress中關(guān)閉Feed功能
慕桂英546537
2019-05-14 09:08:38
TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超17個(gè)贊
將以下代碼片段添加到你的主題的functions.php中即可。
function digwp_disable_feed() {
wp_die(__('<h1>Feed已經(jīng)關(guān)閉, 請(qǐng)?jiān)L問(wèn)網(wǎng)站<a href="'.get_bloginfo('url').'">首頁(yè)</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);
舉報(bào)