From 11cb72602d53a8c532416dd1c551acfdec206be6 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Tue, 16 Feb 2016 14:32:32 -0500 Subject: [PATCH] changed sidebar to use appearance menu instead of pages --- lib/navigation.php | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/lib/navigation.php b/lib/navigation.php index f0843f6..ec10e50 100644 --- a/lib/navigation.php +++ b/lib/navigation.php @@ -37,6 +37,25 @@ if ( ! function_exists( 'glm_theme_mobile_off_canvas' ) ) { echo ''; } } +function glm_get_sidebar_menu( $theme_location ) +{ + $menu = wp_nav_menu(array( + 'echo' => false, // don't echo + 'container' => false, // remove nav container + 'container_class' => '', // class of container + 'menu' => '', // menu name + 'menu_class' => 'off-canvas-list', // adding custom nav class + 'theme_location' => $theme_location, // where it's located in the theme + 'before' => '', // before each link + 'after' => '', // after each link + 'link_before' => '', // before each link text + 'link_after' => '', // after each link text + 'depth' => 1, // limit the depth of the nav + 'fallback_cb' => false, // fallback function (see below) + 'walker' => new Glm_Theme_Off_Canvas_Walker() + )); + return preg_replace( array( '%^]*>%', '%$%' ), '', $menu ); +} function glm_get_mobile_nav_menu( $theme_location ) { $menu = wp_nav_menu(array( @@ -157,7 +176,9 @@ function glm_side_menu() { } echo '

'.get_the_title($ID).'

'; echo ''."\n"; } -- 2.17.1