function exclude_pages_from_search($query) {
if ( $query->is_main_query() && $query->is_search ) {
// Define the page IDs to exclude
$exclude_ids = array(214, 222, get_option('page_on_front'));
6
// Set the 'post__not_in' parameter
$query->set('post__not_in', $exclude_ids);
}
9
}
add_action('pre_get_posts', 'exclude_pages_from_search');