もしも検索結果がない場合は「該当する物件はありませんでした。」というメッセージを表示します。 検索条件は、WordPressに標準で用意されているカテゴリーとタグを使います。「エリア」はカテゴリー、「特徴」はタグを割り当てます。 絞り込み検索のプログラム ここからは、絞り込み検索を作るためのプログラムを紹介します。 <!-- 1. 検索条件の取得と変数の設定 --> <?php $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'DESC' ); if(!empty($_POST['search_category'])) { foreach($_POST['search_category'] as