This code snippet will show you to include only specific post types in your WordPress search results.
Code snippet: Include specific post types in WordPress search results
function dt_search_filter($query) { if ($query->is_search) { $query->set('post_type', array('post', 'page')); // array of post types you want to include in search only! } return $query; } add_filter('pre_get_posts', 'dt_search_filter');
The post Include specific post types in WordPress search results appeared first on Deluxe Themes.