• Hello,

    Is there any way to add search form to the menu of website?
    I found some code that may work:
    add_filter(‘wp_nav_menu_items’,’add_search_in_menu’, 10, 2);
    function add_search_in_menu( $items, $args ) {
    if( $args->theme_location == ‘left-wp-mobile-menu’) {

    $items .= “Anything”;

    }
    return $items;
    }

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Search in menu’ is closed to new replies.