#21342 closed enhancement (wontfix)
The admin bar search form is lacking the get_search_form filter
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.4.1 |
Component: | Toolbar | Keywords: | |
Focuses: | Cc: |
Description
The correction is obvious. Just add :
$form = apply_filters('get_search_form', $form);
at line 641 of wp-includes/admin-bar.php
Change History (3)
#2
@
13 years ago
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
get_search_form
is for get_search_form()
which is reserved for themes and not for the toolbar.
If you want to replace the search from you can remove the existing with
remove_action( 'admin_bar_menu', 'wp_admin_bar_search_menu', 4 );
and then add you can add your own with
add_action( 'admin_bar_menu', 'your_custom_callback_function', 4 );
Note: See
TracTickets for help on using
tickets.
Since that form is not returned by
get_search_form()
function, not sure if it's a good idea to use the same filter.