Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created February 25, 2015 08:07
Show Gist options
  • Save ville6000/3cdb5d597eaa25db4b27 to your computer and use it in GitHub Desktop.
Save ville6000/3cdb5d597eaa25db4b27 to your computer and use it in GitHub Desktop.
Exclude page from Wordpress search
function your_theme_exclude_pages_from_search( $query ) {
$query->set( 'post__not_in', PAGE_ID_HERE );
return $query;
}
add_filter( 'pre_get_posts', 'your_theme_exclude_pages_from_search' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment