[Plugin: bbPress Search Widget] Why drop-down?
-
I’m a little surprised there is a dropdown in the widget, and can’t imagine a user actively wanting to search forum titles and descs instead of every post type throughout the forum.
I’m glad this plugin exists though, I’m patching up my own to take out the dropdown.
I’ve taken out the dropdown, and replaced it with this:
$form .= '<input type="hidden" value="forums" name="post_type">';
And to search all three post types, modify query vars as such:
add_action('parse_query', 'maybe_modify_query_for_forums_search'); function maybe_modify_query_for_forums_search($query) { if( !$_GET['s'] && !$query->query_vars['post_type'] == "forums") return; $query->query_vars['post_type'] = array('topic', 'forum', 'reply'); $query->query['post_type'] = array('topic', 'forum', 'reply'); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: bbPress Search Widget] Why drop-down?’ is closed to new replies.