__( 'The Main Menu', 'bakedwp' ), // Main nav in header ) ); // The Top Menu function joints_top_nav() { wp_nav_menu(array( 'container' => false, // Remove nav container 'container_class' => '', // Class of container 'menu' => 'The Top Menu', 'bakedwp', // Menu name 'menu_class' => 'top-bar-menu right', // Adding custom nav class 'theme_location' => 'main-nav', // Where it's located in the theme 'before' => '', // Before each link 'after' => '', // After each link 'link_before' => '', // Before each link text 'link_after' => '', // After each link text 'depth' => 5, // Limit the depth of the nav 'fallback_cb' => false, // Fallback function (see below) 'walker' => new Top_Bar_Walker(), )); } /* End Top Menu */ ?>