Viewing 2 replies - 1 through 2 (of 2 total)
  • I see your search bar in Safari and Firefox on Macintosh.

    Thread Starter mojiemita

    (@mojiemita)

    thanks , this is a conflict and i risolved it with this code :

    add_filter(‘wp_nav_menu_items’, ‘add_search_form_to_menu’, 10, 2);
    function add_search_form_to_menu($items, $args) {
    if( !($args->theme_location == ‘main’) )
    return $items;
    return $items . ‘<li class=”my-nav-menu-search”>Non hai trovato quello che ti interessa?<br/>’ . get_search_form(false) . ‘‘;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘search bar on menu’ is closed to new replies.