有没有一种简单的方法可以查询评论数超过某个数字的帖子?
例如,我只想列出评论超过20条的帖子。
$args = array(
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'posts_per_page\' => 25,
// Something like this
\'comments_query\' => array(
array(
\'value\' => 20,
\'type\' => \'numeric\',
\'compare\' => \'>=\',
),
)
);
$query = new WP_Query( $args );