Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marpstar/afcae0a0ddb4c64dc634 to your computer and use it in GitHub Desktop.
Save marpstar/afcae0a0ddb4c64dc634 to your computer and use it in GitHub Desktop.
Limit WordPress search results to certain post types.
/* limit search to pages only - works as of WordPress 3.9.1 */
function mySearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', array('page', 'tribe-events'));
};
return $query;
};
add_filter('pre_get_posts','mySearchFilter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment