Lego2012
12/13/2016 - 11:57 AM

Automatically Add a Search Box to Your Nav Menu

Automatically Add a Search Box to Your Nav Menu

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

<!-- 
Want to automatically add a search box to your nav? Here’s how: 
-->

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;
}