\n";
$args = array(
'fallback_cb' => 'aweaver_page_menu',
'theme_location' => $menuw,
'menu_class' => $menu_class,
'container' => 'div',
'container_class' => 'wvrx-menu-container ' . $class,
'items_wrap' => $left . $right .
'
',
);
$locations = get_nav_menu_locations(); // note - the default menu is handled in aweaver_page_menu() in filters.php
if ( isset( $locations[ $menuw ] ) ) {
$the_menu = wp_get_nav_menu_object( $locations[ $menuw ] );
if ( ! empty( $the_menu ) ) {
$args['fallback_cb'] = '';
$args['walker'] = new aweaver_Walker_Nav_Menu();
}
}
wp_nav_menu( $args );
echo "
\n\n";
}
}
aweaver_menu_primary();