adding footer menu, registerring nav menu
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 11 Apr 2016 14:52:15 +0000 (10:52 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 11 Apr 2016 14:52:15 +0000 (10:52 -0400)
lib/navigation.php
parts/off-canvas-menu.php

index f5b5d91..6b51f58 100644 (file)
@@ -1,7 +1,8 @@
 <?php
 
 register_nav_menus(array(
-  'top-bar' => 'Site Navigation'
+  'top-bar' => 'Site Navigation',
+  'footer'  => 'Footer Navigation'
 ));
 
 /**
@@ -25,6 +26,27 @@ if ( ! function_exists( 'glm_theme_top_bar' ) ) {
       ));
   }
 }
+/**
+ * Footer
+ */
+if ( ! function_exists( 'glm_theme_footer' ) ) {
+  function glm_theme_footer() {
+      wp_nav_menu(array(
+          'container' => false,                           // remove nav container
+          'container_class' => '',                        // class of container
+          'menu' => '',                                   // menu name
+          'menu_class' => '',                             // adding custom nav class
+          'theme_location' => 'footer',                  // where it's located in the theme
+          'before' => '',                                 // before each link <a>
+          'after' => '',                                  // after each link </a>
+          'link_before' => '',                            // before each link text
+          'link_after' => '',                             // after each link text
+          'depth' => 3,                                   // limit the depth of the nav
+          'fallback_cb' => false,                         // fallback function (see below)
+          'walker' => new Glm_Theme_Top_Bar_Walker()
+      ));
+  }
+}
 
 /**
  * Mobile off-canvas
@@ -34,6 +56,7 @@ if ( ! function_exists( 'glm_theme_mobile_off_canvas' ) ) {
         echo '<div class="left-off-canvas-list">';
         echo '<ul><li class="page_item"><a href="' . get_bloginfo('url') . '">Home</a></li>';
         echo glm_get_mobile_nav_menu( 'top-bar' );
+//        echo glm_get_mobile_nav_menu( 'footer' );
         echo '</ul></div>';
     }
 }
index b75ee03..5f42dc5 100644 (file)
@@ -1,5 +1,6 @@
 <aside class="left-off-canvas-menu hide-for-large-up">
     <?php glm_theme_mobile_off_canvas(); ?>
+<!--
     <ul id="sec-off-canvas">
         <li><a href="#">Member Login</a></li>
         <li><a href="#">Chamber of Commerce</a></li>
@@ -7,6 +8,7 @@
         <li><a href="#">Contact Us</a></li>
         <li><a href="#">Media</a></li>
     </ul>
+-->
     <?php get_template_part('parts/search');?>
     <ul class="offcavas-social-list text-center">
         <li class="face"><a href="http://www.facebook.com/pages/Think-Dunes/342919239241" target="_blank"></a></li>