WordPress: Add Search to Menu
The following is code is for your WordPress theme to automatically add a search box to your menu. Just add this code to your functions.php file within the theme, be sure to place this code inside your PHP code <?php and ?>.
1 2 3 4 5 6 7 8 9 10 |
/* Add a search box to the menu */ add_filter('wp_nav_menu_items','add_search_box', 10, 2); function add_search_box($items, $args) { ob_start(); get_search_form(); $searchform = ob_get_contents(); ob_end_clean(); $items .= '<li>' . $searchform . '</li>'; return $items; } |
This code can be found at WPRecipes.com
Recent Comments