Add the following function to the functions.php of your theme, if you want to search in posts, pages and faqs:
function fb_search_filter($query) {
if ( !$query->is_admin && $query->is_search) {
$query->set('post_type', array('post', 'page', 'hrf_faq') );
}
return $query;
}
add_filter( 'pre_get_posts', 'fb_search_filter' );
If you just want to search in the faqs change
$query->set('post_type', array('post', 'page', 'hrf_faq') );
to
$query->set('post_type', array('hrf_faq') );
Click on “Run” a bit further down on the page. 🙂
Thank you very much, a great plugin and a great effort!
Thank you very much, a great plugin and a great effort!
-
This reply was modified 9 years, 4 months ago by Lufrutta.