0

这是我的 word press 查询来搜索帖子。

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

4

1 回答 1

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查询

于 2013-10-22T05:38:05.213 回答