fix footer menu

This commit is contained in:
Jonas Heinrich 2020-04-10 16:11:19 +02:00
parent a945c96842
commit d434db6ca6
2 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ function kit_setup() {
register_nav_menus( array( register_nav_menus( array(
'primary' => 'Main Menu', 'primary' => 'Main Menu',
'secondary' => 'Footer Menu', 'secondary' => 'Footer Menu'
) ); ) );
}; };

View file

@ -1,10 +1,10 @@
<section class="footer-bottom"> <section class="footer-bottom">
<div class="content-wrap">
<?php <?php
wp_nav_menu( array( wp_nav_menu( array(
'theme_location' => 'Footer Menu', 'theme_location' => 'secondary',
'menu_class' => 'content-wrap', 'container' => 'false'
'depth' => 1
) ); ) );
?> ?>
</div>
</section> </section>