• Hi I’m using this:

    <?php 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 class="searchbox">' . $searchform . '</li>';
    
        return $items;
    }?>

    to add a search bar to my main navigation menu. The only thing is, i have a couple of menus in sidebars as it’s appearing on those too.

    How would I prevent this?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Search box in main nav bar only’ is closed to new replies.