这是我的新闻查询搜索帖子。
$args = array('p'=>array('52','62','33','50'),'post_type' => 'job_listing','posts_per_page'=>'-1');
$posts_by_job_type = new WP_Query($args);
但是我找不到喜欢id 52,62,33,50的帖子它会返回0个帖子。
答案 0 :(得分:0)
$args = array('post__in'=>array('52','62','33','50'),'post_type' => 'job_listing','posts_per_page'=>'-1');
$posts_by_job_type = new WP_Query($args);
请参阅此处