这是我的文字按查询来搜索帖子。
$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条。
发布于 2013-10-22 05:38:05
$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
https://stackoverflow.com/questions/19509712
复制相似问题