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

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -