Limit search on forum
-
Hello!
It is possible to limit search’s post type on forum and leave the one on the blog untouched? My current filter is like this:
function search_filter($query) { if ($query->bbp_is_search) { $query->set('post_type', array('post', 'forum', 'topic', 'reply')); } else if ($query->is_search) { $query->set('post_type', 'post'); } return $query; } add_filter('pre_get_posts', 'search_filter');But it doesn’t work… what do I have to change?
Thank you! 🙂
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.