如何在wordpress中关闭Feed功能

如何在wordpress中关闭Feed功能


慕无忌1623718
浏览 1794回答 2
2回答

弑天下

将以下代码片段添加到你的主题的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);
打开App,查看更多内容
随时随地看视频慕课网APP