您需要设置ignore_sticky_posts
到true
在查询参数中。这样,您可以排除粘性帖子,只关注传递给的帖子ID的数组post_in
\'ignore_sticky_posts\' => true,
编辑如果这没有多大意义,请参见
my answer here 对于类似的问题,我已经做了更好的解释。一定要去看看
代码
$r = new WP_Query(array(
\'posts_per_page\' => 5,
\'post__in\' => $sticky,
\'meta_query\' => array(
array(
\'key\' => \'_thumbnail_id\',
\'compare\' => \'EXISTS\',
),
),
\'post_status\' => \'publish\',
\'orderby\' => \'post__in\',
\'post_type\' => array( \'post\' ),
\'ignore_sticky_posts\' => true,
));