Skip to content

Instantly share code, notes, and snippets.

@shirokoweb
Created September 20, 2021 17:53
Show Gist options
  • Save shirokoweb/b140b5ad60eef43a8dd64c67cc8d59da to your computer and use it in GitHub Desktop.
Save shirokoweb/b140b5ad60eef43a8dd64c67cc8d59da to your computer and use it in GitHub Desktop.
Exclude specifi page(s) from WordPress search results
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
function chut_search_filter( $query ) {
if ( ! $query->is_admin && $query->is_search && $query->is_main_query() ) {
$query->set( 'post__not_in', array( 1,10,110 ) );
}
}
add_action( 'pre_get_posts', 'chut_search_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment