Skip to content

Instantly share code, notes, and snippets.

@Pross
Created February 27, 2014 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pross/9254063 to your computer and use it in GitHub Desktop.
Save Pross/9254063 to your computer and use it in GitHub Desktop.
<?php
function SearchFilter($query) {
if ($query->is_search) {
$query->set( 'post__not_in' , array( 165 ) ); // Page ID
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment