Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Created August 15, 2020 21:40
Show Gist options
  • Save wpexplorer/6c84356b72ebf3716942a07991e78b3b to your computer and use it in GitHub Desktop.
Save wpexplorer/6c84356b72ebf3716942a07991e78b3b to your computer and use it in GitHub Desktop.
add_action( 'pre_get_posts', function( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
$excluded_pages = array( 'PAGE_1_ID', 'PAGE_2_ID' );
set_query_var( 'post__not_in', $excluded_pages );
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment