通过POST ID发布Wordpress?

时间:2013-10-22 05:34:36

标签: php wordpress

这是我的新闻查询搜索帖子。

$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个帖子。

1 个答案:

答案 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);

请参阅此处

Wp Query