排除WordPress RSS Feed中某些类别的帖子评论

时间:2016-02-14 13:39:09

标签: wordpress rss comments

所以我可以将某个类别的帖子排除在WordPress RSS(等)提要中显示,我的问题是我还需要停止对出现的帖子发表评论。

但转到http://www.example.com/comments/feed/会显示对这些帖子的评论,这些评论应该保密。

搜索高低,尝试各种各样,所以希望这里的一些专家可以提供帮助!

1 个答案:

答案 0 :(得分:0)

function custom_comment_feed_where($where) {
    global $wpdb;
    // get the post type
    $where .= " AND $wpdb->posts.post_type NOT IN (
        'xxx',
        'yyy'
    )";
    return $where;
}

add_filter('comment_feed_where', 'custom_comment_feed_where');