August 31, 2016 at 10:16 am
Im currently trying to have two menus in my footerCREDITS. One for nav, on the left, and one that says “Sitemap” on the right. The way I have achieved this is by creating a Sitemap menu and placing it at the topbar, then hiding it there, and then calling it inside the footer menu. The issue with this is pretty obvious, I can’t have a top-bar menu… I just want to know where I can find other menus, Here is my current code:
<?php if (has_nav_menu(‘footer_navigation’)) :
?><div class=”footernav clearfix”><?php
wp_nav_menu(array(‘theme_location’ => ‘footer_navigation’, ‘menu_class’ => ‘footermenu’));
?></div><?php
endif;?>
<?php if(!empty($pinnacle[‘footer_text’])) { echo ‘’. do_shortcode($pinnacle[‘footer_text’]).’
’;} ?>
<div class=”footernav clearfix”><?php
wp_nav_menu(array(‘theme_location’ => ‘topbar_navigation’, ‘menu_id’ => ‘menu-sitemap’));
?></div>
What should I put after ‘theme_location’ => ‘?????’
I just want to be able to create a menu, and then not use it, but then call it in the template from whereever it is stored.