配列内で繰り返し処理を行いたいけれど、やり方がわからない
wordpressを使っておりまして、以下のような検索(抽出)を行いたいと思っています。
php
1 $tax_query = array ( 2 'relation' => 'OR', 3 // ↓ここから 4 array( 5 'taxonomy' => 'test_taxonomy', 6 'field' => 'slug', 7 'terms' => 'test_terms_hoge', // ←ここがそれぞれ違う 8 ), 9 array( 10 'taxonomy' => 'test_taxonomy', 11 'field' => 'slug', 12 'terms' => 'test_terms_fuga', // ←ここがそれぞれ違う 13 ), 14 array( 15 'taxonomy' => 'test_taxonomy', 16 'field' => 'slug', 17 'terms' => 'test_terms_piyo', // ←ここがそれぞれ違う 18 ), 19 array( 20 'taxonomy' => 'test_taxonomy', 21 'field' => 'slug', 22 'terms' => 'test_terms_hogera', // ←ここがそれぞれ違う 23 ), 24 array( 25 'taxonomy' => 'test_taxonomy', 26 'field' => 'slug', 27 'terms' => 'test_terms_hogehoge', // ←ここがそれぞれ違う 28 ), 29 // ↑ここまでを何回か繰り返したい!(繰り返しの回数は変わる) 30 ); 31 32 $args = array ( 33 'post_type' => 'test_post_type', 34 'tax_query' => array ( 35 $tax_query //ここに上記で指定した複数個の検索条件が入る 36 ) 37 ); 38 <?php $the_query = new WP_Query( $args ); // ←↓ Wordpressによくある定型文 ?> 39 <?php if ( $the_query->have_posts() ) : ?> 40 <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> 41 . 42 . 43 . 44 以降、html文が続く
##もしかして、こうする?
できない気がするけどな~と思いながらもやってみました。
php
1 $tax_query = array ( 2 'relation' => 'OR', 3 // ↓ここから 4 for($i=0; $i<3; $i++) { //繰り返し回数は、とりあえず適当で 5 array( 6 'taxonomy' => 'test_taxonomy', 7 'field' => 'slug', 8 'terms' => 'test_terms_hoge', // ←ホントはここが変わらないといけないけど、とりあえず一緒で 9 ), 10 } 11 );
そうすると構文エラー!で怒られてしまいました。
##たぶん違うところで一旦処理を行ってから、代入するんだと予想
配列の中でやるからダメなんだろう、きっとこの外でやればいいんだろうとは思うんです。
php
1 //ここから 2 for($i=0; $i<3; $i++) { 3 $array_terms[] = // これでちゃんと入るの……? 4 array( 5 'taxonomy' => 'test_taxonomy', 6 'field' => 'slug', 7 'terms' => 'test_terms_hoge', // ←ホントはここが変わらないといけないけど、とりあえず一緒で 8 ), 9 } 10 //ここまでを↓のarrayから外に出した 11 $tax_query = array ( 12 'relation' => 'OR', 13 $array_terms // そしてここに$array_termsを……どうやって入れるんだろう 14 );
今度は$tax_qyeryの中に$array_termsを入れる方法がわからなくなりまして……。
あ、もしかしてforeachかな?と思うも、それじゃ結局array()の中でforを使って構文エラー!って怒られた時と一緒の状況になっちゃうな……と。
##わかってる人からしたら、絶対初歩的で簡単なことだとは思うんです
でもいくら調べても調べ方が悪いのか、もしくは簡単すぎて誰も問題にしてないのか、ずっとわからずじまいで……。
php
1array ( 2 //ここから 3 4 //ここまでを繰り返す処理 5);
の部分をどうかお教えいただけませんでしょうか。
説明がわかりづらいところが多いかと思いますが、何卒よろしくお願いいたします。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/14 09:43
2021/10/14 11:27
2021/10/14 14:25
2021/10/14 21:54