以下のサイトを参考に絞り込み検索機能を実装しておりますが、うまく検索結果が反映されません。
参考サイト
カスタム投稿タイプで作られた投稿を、カスタムタクソノミーでソースして検索できる機能を作りたいです。
現状は、
・プルダウン式 - 地域名でソース
・チェックボックス式 - 機械名でソース
の二つのソース部分があります。
例えば、北海道地域でソースし検索ボタンを押すと、
http:~/?s=&prefecture=hokkaido&submit=検索する
とURLがなりますので、値は獲得できているかと思います。
コードわかりにくいですが、どなたかお力かしていただけると幸いです。
よろしくお願い申し上げます。
<section class="introduced-section"> <div class="introduced-wrapper"> <section class="search-box"> <form method="get" id="searchform" action="<?php echo home_url('/'); ?>"> <label for="s" class="assistive-text"></label> <input type="hidden" name="s" id="s"/> <div class="input-search-box"> <div class="area-search"><!--エリアでソース部分--> <p id="category-txt" class="txt">エリア</p> <div class="select-wrap"> <select name="prefecture"> <option value="" selected>選択してください</option> <?php $taxonomy_name='prefecture'; $taxonomys = get_terms($taxonomy_name); if(!is_wp_error($taxonomys) && count($taxonomys)): foreach($taxonomys as $taxonomy): $tax_posts = get_posts(array('post_type' => get_post_type(), 'taxonomy' => $taxonomy_name, 'term' => $taxonomy->slug ) ); if(isset($tax_posts)):?> <option value="<?php echo $taxonomy->slug; ?>"><?php echo $taxonomy->name; ?></option> <?php endif; endforeach; endif; ?> </select><!--prefecture--> </div><!--select-wrap--> </div><!--area-search--> <div class="select-wrap"><!--機械でソース部分--> <p id="machine-txt" class="txt">導入機器</p> <div class="checkbox-wrap"> <?php $taxonomy_name='machine_type'; $taxonomys = get_terms($taxonomy_name); if(!is_wp_error($taxonomys) && count($taxonomys)): foreach($taxonomys as $taxonomy): $tax_posts = get_posts(array('post_type' => get_post_type(), 'taxonomy' => $taxonomy_name, 'term' => $taxonomy->slug ) ); if($tax_posts): ?> <p class="input-box"> <label><input type="checkbox" name="machine_type" id="machine1" value="<?php echo $taxonomy->slug; ?>"><?php echo $taxonomy->name; ?></label> </p> <?php endif; endforeach; endif; ?> </div><!--checkbox-wrap--> </div><!--select-wrap--> </div><!--input-search-box--> <div class="search-btn-wrap"> <input type="submit" class="submit" name="submit" id="searchsubmit" value="検索する" /> </div><!--search-btn-wrap--> </form> </section><!--search-box--> <?php $prefecture = $_GET['prefecture'] ?? null; $machine_type = $_GET['machine_type'] ?? null; //$post_tag = $_GET['post_tag'] ?? null; //tax_query用 if(isset($prefecture)){ $taxquerysp[] = array( 'taxonomy'=>'prefecture', 'terms'=> $prefecture, 'include_children'=>false, 'field'=>'slug', 'operator'=>'AND' ); } else{ $taxquerysp = ""; //絶対値が入るようにしてあげるとか。 } if(isset($machine_type)){ $taxquerysp[] = array( 'taxonomy'=>'machine_type', 'terms'=> $machine_type, 'include_children'=>false, 'field'=>'slug', 'operator'=>'AND' ); } else{ $taxquerysp = ""; //絶対値が入るようにしてあげるとか。 } ?> <section class="search-result-content"> <section class="result-wrapper"> <?php query_posts( array( 'tax_query' => $taxquerysp, 'meta_query' => $metaquerysp, 's' => $s, 'post_type' => 'search-store', 'posts_per_page' => -1, ) ); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <section class="area-section"> <div class="area-name-block"> <p class="area-name"><?php if ($terms = get_the_terms($post->ID, 'prefecture')) { foreach ( $terms as $term ) { echo esc_html($term->name); } } ?></p> </div><!--area-name-block---> <div class="result-box"> 検索結果内容 </div><!--result-box--> </section> <?php endwhile; else : ?> <?php endif; wp_reset_query(); ?> </section><!--result-wrapper--> </section><!--result-content--> </div><!--introduced-wrapper--> </section><!--introduced-section-->
あなたの回答
tips
プレビュー