Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

How do I select a menu to place in the footer?

Home / Forums / Pinnacle Theme / How do I select a menu to place in the footer?

This topic is: Not Resolved
[Not Resolved]
Posted in: Pinnacle Theme
August 31, 2016 at 8:40 am

Hey Guys,

Im currently trying to have two menus in my footer. 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 ‘<p>’. do_shortcode($pinnacle[‘footer_text’]).'</p>’;} ?>
<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.

Thank you

  • The forum ‘Pinnacle Theme’ is closed to new topics and replies.