検索結果に固定ページ&カスタム投稿を表示させたくなかったのでカスタマイズする。
とりあえず固定ページをフィルタリングしたら理想通りの結果となった。
1 2 3 4 5 6 7 |
function SearchFilter($query) { if ( !is_admin() && $query->is_main_query() && $query->is_search() ) { $query->set('post_type', 'post'); } return $query; } add_filter('pre_get_posts','SearchFilter'); |