我想删除评论提要并发布评论提要。从Wordpress 5.4.2开始,这对我很有效。
将此添加到您的;“在设置主题后”;行动
add_theme_support(\'automatic-feed-links\');
在该行之后添加此项:
add_filter( \'feed_links_show_comments_feed\', \'__return_false\' );
在您的“之后”;在\\u setup\\u主题操作之后,添加此函数和过滤器(我从
https://jeffvautin.com/2016/03/removing-comments-rss-feeds-from-wordpress/ 博客。)它将删除帖子评论提要。
/**
* Remove the posts comments rss feed
*/
function disablePostCommentsFeedLink($for_comments) {
return;
}
add_filter(\'post_comments_feed_link\',\'disablePostCommentsFeedLink\');
我还添加了这个来删除那些不必要的提要
/**
* remove non-essential rss feeds
*
* This removes feeds like tags, authors, search, post type
*/
remove_action( \'wp_head\', \'feed_links_extra\', 3 );
我相信这会给我一个主要的线索。我不确定这是否是最好的方式,但似乎做到了。