为什么WordPress显示来自空post__in数组的查询结果?
我有以下论点:WP_Query
$posts = new WP_Query(array(
'post__in' => $postids,
'meta_key' =>'ratings_average',
'orderby'=>'meta_value_num',
'order' =>'DESC',
));
$postids是从另一个 中检索的 id 数组。我在这里的问题是,即使$postids是空的,Wordpress循环也会显示帖子。我该如何管理它不应该显示任何帖子,如果$postids是空的。WP_Query