* Mobile off-canvas
*/
if ( ! function_exists( 'truenorthgolf_mobile_off_canvas' ) ) {
- function truenorthgolf_mobile_off_canvas( $top_bar_left ) {
+ function truenorthgolf_mobile_off_canvas( $top_bar_location ) {
echo '<ul class="left-off-canvas-list">';
- echo '<li class="page_item"><a href="' . home_url() . '">Home</a></li>';
+ if ($top_bar_location == 'top-bar-left') {
+ echo '<li class="page_item"><a href="' . home_url() . '">Home</a></li>';
+ }
wp_nav_menu(array(
'container' => false, // remove nav container
'container_class' => '', // class of container
'menu' => '', // menu name
'menu_class' => 'off-canvas-list', // adding custom nav class
- 'theme_location' => $top_bar_left, // where it's located in the theme
+ 'theme_location' => $top_bar_location, // where it's located in the theme
'before' => '', // before each link <a>
'after' => '', // after each link </a>
'link_before' => '', // before each link text