Quantcast
Channel: Deluxe Themes - Premium WordPress Themes, WordPress Tips, Tutorials and Code Snippets!
Viewing all articles
Browse latest Browse all 33

Include specific post types in WordPress search results

$
0
0

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.


Viewing all articles
Browse latest Browse all 33

Trending Articles