WordPressにて、期間でイベントを検索できるページを作っております。
「イベント」というカスタム投稿タイプ内の記事にカスタムフィールドで「開始日」「終了日」を設定、検索フォームで「イベント期間内の日付」を入力し、「イベント開催エリア」タクソノミーでチェックボックスを作り、絞り込み検索をできるようにしております。
・検索フォームに日付を入力+タクソノミーを選択すると期間内の該当の記事が表示される
・日付を入力すると期間内の記事が表示される
上記2点はできたのですが、日付を入力せずタクソノミーのみ選択した場合のみ、該当記事が全く表示されません。
タクソノミーを選択した際は、タクソノミーのみで絞り込みをしたいです。
searchform.phpのコードです。
php
1<form role="search" method="get" action="<?php echo esc_url(home_url('/')); ?>"> 2<input type="hidden" name="s" value="<?php the_search_query(); ?>"> 3<input type="hidden" name="post_type" value="event"> 4 5<div class="search_inner"> 6<ul class="eve_area_cat"> 7<span>エリア指定:</span> 8<?php 9 $terms = get_terms('area_cat'); 10 foreach ( $terms as $term ) : 11?> 12<li> 13<label> 14<input type="checkbox" name="area[]" value="<?php echo $term->slug; ?>"><?php echo $term->name; ?> 15</label> 16</li> 17<?php endforeach; ?> 18</ul> 19 20<div class="date_search"> 21<span>日付指定:</span> 22<label><input name="eventlist" type="text" id="calendar" readonly="readonly"></label> 23</div> 24</div> 25 26<div class="search_btn"> 27<input type="submit" value="検索する"> 28</div> 29 30</form>
search.phpのコードです。
PHP
1<div class="event_box"> 2 3<ul> 4 5<?php 6// searchform.phpから送られてきたパラメーターを取得 7$eventlist = $_GET['eventlist']; //searchform.phpの<input>のname属性の値と合わせる 8$area = $_GET['area']; 9 10if($area) { 11 // 絞り込み条件を追加 12 $area_taxonomy = array( 13 'taxonomy' => 'area_cat', 14 'terms' => $area, 15 'field' => 'slug', 16 ); 17} 18 19if ($eventlist){ //開始日〜終了日の中に含まれる日付で絞り込む 20 $event_date = array( 21 'relation' => 'AND', 22 array( 23 'key' => '開始日のフィールド名', 24 'value' => $eventlist, 25 'compare' => '<=', //入力した日付よりも後 26 'type' => 'DATE' 27 ), 28 array( 29 'key' => '終了日のフィールド名', 30 'value' => $eventlist, 31 'compare' => '>=', //入力した日付よりも前 32 'type' => 'DATE' 33 ), 34 ); 35} 36 37// サブループで表示する記事の条件を指定 38$args = array( 39 'paged' => $paged, 40 'post_type' => 'event', 41 'posts_per_page' => 10, 42 's' => get_search_query(), 43 // searchform.phpで送られてきた条件を追加 44 'meta_query' => array( 45 $event_date, 46 ), 47 'tax_query' => array( 48 'relation' => 'AND', //ANDかORのどちらかを指定(大文字) 49 $area_taxonomy, 50 ), 51); 52 53// サブループ作成 54$the_query = new WP_Query( $args ); ?> 55 56 57<?php if ( $the_query->have_posts() ) : ?> 58<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> 59 60<li> 61<?php get_template_part('content'); ?> 62</li> 63 64<?php endwhile ; ?> 65<?php else : ?> 66<p>期間中の投稿はありません。</p> 67<?php endif; wp_reset_postdata(); ?> 68 69</ul> 70 71<p class="pagenation"> 72<?php if(function_exists('wp_pagenavi')) wp_pagenavi(array('query' => $the_query));?> 73</p> 74</div>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。