Skip to content

Instantly share code, notes, and snippets.

@greenhornet79
Created September 30, 2014 19:32
Show Gist options
  • Save greenhornet79/d61170d92a28dcbe01ff to your computer and use it in GitHub Desktop.
Save greenhornet79/d61170d92a28dcbe01ff to your computer and use it in GitHub Desktop.
Add Custom Post Types to WordPress Search
<?php
function my_search_filter($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ($query->is_search) {
$query->set('post_type', array( 'post', 'article' ) );
}
}
}
add_action('pre_get_posts','my_search_filter');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment