wordpressにて、『title』と『honbun』という2つのカスタム投稿タイプにそれぞれ対応した検索フォームを設置しようと考えています。
『title』では投稿タイトルのみを検索対象にし、
『honbun』では投稿本文のみを検索対象にする予定です。
また、結果はそれぞれsearch-title.php、 search-honbun.phpに出力します。
wpcj.net/1709 こちらのサイトを参考に、タイトルのみの検索はできるようになったのですが、全ての検索フォームに適応され、本文のみの検索ができない状態になってしまいました。
上手く#titlesearchformにだけタイトルのみの検索を適応させる方法はありますでしょうか?
html
1<div id="titlesearch"> 2<p>タイトルのみ検索します</p> 3<form id="titlesearchform" class="searchform" role="search" action="<?php echo home_url( '/' ); ?>" method="get"> 4<input type="hidden" name="post_type" value="title"> 5<input id="t-search" name="s" type="text" placeholder="キーワードを入力"/> 6<button type="submit" id="titlesubmit"><div id="t-btn">タイトルを検索</div></button> 7</form> 8</div> 9 10<div id="honbunsearch"> 11<p>本文のみ検索します</p> 12<form id="honbunsearchform" class="searchform" role="search" action="<?php echo home_url( '/' ); ?>" method="get"> 13<input type="hidden" name="post_type" value="honbun"> 14<input id="h-search" name="s" type="text" placeholder="キーワードを入力"/> 15<button type="submit" id="honbunsubmit"><div id="h-btn">本文を検索</div></button> 16</form> 17</div>
php
1function posts_search_title_only( $orig_search, $query ) { 2 if ( $query->is_search() && $query->is_main_query() && ! is_admin() ) { 3 global $wpdb; 4 $search = ''; 5 6 $q = $query->query_vars; 7 $n = ! empty( $q['exact'] ) ? '' : '%'; 8 $searchand = ''; 9 10 foreach ( $q['search_terms'] as $term ) { 11 $include = '-' !== substr( $term, 0, 1 ); 12 if ( $include ) { 13 $like_op = 'LIKE'; 14 $andor_op = 'OR'; 15 } else { 16 $like_op = 'NOT LIKE'; 17 $andor_op = 'AND'; 18 $term = substr( $term, 1 ); 19 } 20 $like = $n . $wpdb->esc_like( $term ) . $n; 21 // 検索対象をタイトルのみにします。 22 $search .= $wpdb->prepare( "{$searchand}(($wpdb->posts.post_title $like_op %s))", $like ); 23 $searchand = ' AND '; 24 } 25 26 if ( ! empty( $search ) ) { 27 $search = " AND ({$search}) "; 28 if ( ! is_user_logged_in() ) 29 $search .= " AND ($wpdb->posts.post_password = '') "; 30 } 31 return $search; 32 } else { 33 return $orig_search; 34 } 35} 36add_filter( 'posts_search', 'posts_search_title_only', 10, 2 );
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。