所以我可以将某个类别的帖子排除在WordPress RSS(等)提要中显示,我的问题是我还需要停止对出现的帖子发表评论。
但转到http://www.example.com/comments/feed/会显示对这些帖子的评论,这些评论应该保密。
搜索高低,尝试各种各样,所以希望这里的一些专家可以提供帮助!
答案 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');