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(
'primary' => 'Main Menu',
'secondary' => 'Footer Menu',
'secondary' => 'Footer Menu'
) );
};

View file

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