Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created February 22, 2013 14:13
Show Gist options
  • Save ckpicker/5013681 to your computer and use it in GitHub Desktop.
Save ckpicker/5013681 to your computer and use it in GitHub Desktop.
Exclude Events from Search
// search filter
function custom_search_filter($query) {
if ( !$query->is_admin && $query->is_search) {
$query->set('post_type', array('page','post') );
}
return $query;
}
add_filter( 'pre_get_posts', 'custom_search_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment