- WORDPRESS
- 2021.1.3
ワードプレスの検索結果から検索されたくないページを除外する設定
function.phpに下記の記述をする。
用途としては問い合わせのサンクスページなどの通常見せる必要のないページを検索から除外できる。
array(25,46)←ここにページIDを指定
function search_pre_get_posts( $query ) {
if ( $query->is_search && !is_admin() ){
$query->set( 'post__not_in', array(25,46) );//ここにID指定
}
return $query;
}
add_action( 'pre_get_posts', 'search_pre_get_posts' );