Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 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 个帖子。
$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查询