我正在一个wordpress网站上工作,找到了我喜欢的主题,唯一的问题是,在所有页面的底部,我找到了一个似乎无法删除的RSS feed按钮。 您是否知道该怎么做,如果可能的话,请附加联系页面?我真的不需要RSS idk,为什么主题似乎这么难推动它。非常感谢!
答案 0 :(得分:0)
查看此 https://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/
有和其他插件: https://wordpress.org/plugins/disable-feeds/
或将此添加到function.php / ** *禁用提要 * /
function fb_disable_feed() {
wp_die( __('No feed available, please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
来自 https://www.wprssaggregator.com/rss-tricks-clean-way-get-rid-rss-feed/