9 lines
210 B
PHP
9 lines
210 B
PHP
<section class="footer-bottom">
|
|
<?php
|
|
wp_nav_menu( array(
|
|
'theme_location' => 'Footer Menu',
|
|
'menu_class' => 'content-wrap',
|
|
'depth' => 1
|
|
) );
|
|
?>
|
|
</section>
|