WP Nav Walker…


/*class My_Walker_Nav_Menu extends Walker_Nav_Menu {
                                    function start_lvl( &$output, $depth = 0, $args = array()) {
                                    $indent = str_repeat("\t", $depth);
                                                    $output .= "\n$indent<ul class=\"megamenu full-width\">\n";
                                    }
                    }
                    $menuSettings = array(
                                    'container'       => 'div',
                                    'menu_class'      => 'jetmenu blue', //change this to whatever classes you need for your menu
                                    'echo'            => true,
                                    'fallback_cb'     => 'wp_page_menu',
                                    'items_wrap'      => '<ul id="%1$s" class="%2$s list">%3$s</ul>',
                                    'depth'           => 3, //the number of submenus + 1
                                    'walker'          => new My_Walker_Nav_Menu()
                    );
                    wp_nav_menu( $menuSettings ); //This script displays the menu. Please put it where you want it to display the menu.*/