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.
これは、投稿を検索するための私のワードプレスクエリです。
$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 クエリ