Skip to content

Instantly share code, notes, and snippets.

@wpgaurav
Created April 25, 2020 11:41
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 wpgaurav/5456517f56e59ad09ff14dd46b8dd162 to your computer and use it in GitHub Desktop.
Save wpgaurav/5456517f56e59ad09ff14dd46b8dd162 to your computer and use it in GitHub Desktop.
Include custom post types in the search results.
<?php // MAKE CUSTOM POST TYPES SEARCHABLE
function searchAll( $query ) {
if ( $query->is_search ) { $query->set( 'post_type', array( 'site', 'plugin', 'theme', 'person' )); }
return $query;
}
add_filter( 'the_search_query', 'searchAll' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment