Wordpressでアドバンスカスタムフィールドの値を使って投稿の検索表示を行いたい
WordPressでWP_Queryを使い、アドバンスカスタムフィールドの値を指定して投稿記事を取得したいのですが、上手く抽出できません。プラグインのアドバンスカスタムフィールドをインストールしています。
発生している問題
meta_queryでACFの項目を指定しての抽出が0件になってしまいます。
下記コードで全投稿の抽出ができました。
var_dump($post_count)→int(6)
var_dump($found_posts)→int(6)
※投稿記事が6つあります。
php
1<?php 2$args = array( 3 'post_type' => 'post', 4 'posts_per_page' => -1, 5 'no_found_rows' => false, 6); 7 8$the_query = new WP_Query($args); 9 10$post_count = $the_query->post_count; 11$found_posts = $the_query->found_posts; 12var_dump($post_count); 13var_dump($found_posts); 14?>
該当のソースコード
下記のようなカスタムフィールドがあります
■フィールドグループ…カテゴリ ■フィールド フィールドラベル:テスト1 フィールド名:test1 フィールドタイプ:チェックボックス 選択肢:test1 test2 test3 レイアウト:水平 返り値:value ルール:「投稿タイプ」「等しい」「投稿」
php
1<?php 2$args = array( 3 'post_type' => 'post', 4 'posts_per_page' => -1, 5 'no_found_rows' => false, 6 'meta_query' => array( 7 'relation' => 'AND', 8 9 10 array( 11 'key' => 'test1', 12 'value' => array('test1','test2'), 13 'type' => 'CHAR', 14 'compare' => 'IN' 15 ), 16 ) 17); 18 19$the_query = new WP_Query($args); 20 21 22$post_count = $the_query->post_count; 23$found_posts = $the_query->found_posts; 24var_dump($post_count); 25var_dump($found_posts); 26 27if ($the_query->have_posts()) : 28 while ($the_query->have_posts()) : $the_query->the_post(); 29 30 31 endwhile; 32endif; 33wp_reset_postdata(); 34?>
カテゴリ美設定(未分類)でカスタムフィールドのテスト1項目test1、test2、test3にチェックを付けた投稿が1つありますが、抽出できませんでした。
var_dump($post_count)→int(0)
var_dump($found_posts)→int(0)
試したこと
meta_queryのvalueの指定、カスタムフィールド内の選択肢が原因かと思い変更してみました。
➊カスタムフィールドの選択肢を test1:test1 test2:test2 test3:test3 として、投稿記事の編集でもチェックを付け直しました。 結果は変わらず、投稿の取得件数は0件です。 var_dump($post_count)→int(0) var_dump($found_posts)→int(0) ➋meta_queryのcompareを「'compare' => 'IN'」から「'compare' => '='」に変更しました。 結果はエラーとなり、下記メッセージが表示されました。 Warning: trim() expects parameter 1 to be string, array given ~ /class-wp-meta-query.php on line 695
$args内の'meta_query'、カスタムフィールドの設定、どのように変更すれば投稿を取得できるでしょうか?。
ご教授のほどよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。