質問編集履歴
2
タイトルのプラグイン名の省略をやめ分かりやすくしました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
【WP】ACFのサブフィールドの項目での絞り込み検索が上手くいかない
|
1
|
+
【WP】Advanced Custom Fieldsのサブフィールドの項目での絞り込み検索が上手くいかない
|
test
CHANGED
File without changes
|
1
search.phpのコードの続きを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -208,4 +208,44 @@
|
|
208
208
|
|
209
209
|
|
210
210
|
|
211
|
+
<?php
|
212
|
+
|
213
|
+
query_posts( array(
|
214
|
+
|
215
|
+
'meta_query' => $metaquerysp,
|
216
|
+
|
217
|
+
's' => $s,
|
218
|
+
|
219
|
+
)
|
220
|
+
|
221
|
+
);
|
222
|
+
|
223
|
+
?>
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
<div><?php the_title(); ?></div>
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
<?php endwhile; else : ?>
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
<div>該当なし</div>
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
<?php endif;
|
246
|
+
|
247
|
+
wp_reset_query(); ?>
|
248
|
+
|
249
|
+
|
250
|
+
|
211
251
|
```
|