Skip to content

Instantly share code, notes, and snippets.

@chrispian
Created November 8, 2019 00:14
Show Gist options
  • Save chrispian/8a3aa0ab2c0a12ecea285bd0bfc4769d to your computer and use it in GitHub Desktop.
Save chrispian/8a3aa0ab2c0a12ecea285bd0bfc4769d to your computer and use it in GitHub Desktop.
Limit WP Search to certain post types
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('post', 'tribe_events', 'page'));
};
return $query;
};
add_filter('pre_get_posts', 'filter_search');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment