web-wordpress-kit/kit/template-parts/site-nav.php

21 lines
367 B
PHP

<nav>
<?php
wp_nav_menu(array(
'container' => 'false',
'menu_class' => '',
'theme_location'=>'primary',
'walker' => new kit_custom_main_menu
));
?>
<?php
wp_nav_menu( array(
'container' => false,
'menu_class' => 'extraMenu',
'depth' => 0,
'theme_location' => 'extra',
));
?>
</nav>