Wordpress empty search results -
i have created search page works fine.
but have problem:
when empty search, displays posts , pages, not of them.
how can solve it?
try : (in function.php)
function filter_search($query) { if ($query->is_search) { $query->set('post_type', array('post', 'your_post_type')); }; return $query; }; add_filter('pre_get_posts', 'filter_search');
Comments
Post a Comment