From bc86d807f69c6a4fd37294577ed7c483f24b818d Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 21 Feb 2018 11:46:57 -0500 Subject: [PATCH] Fix function names for off-canvas walkers --- index.php | 2 +- lib/navigation.php | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/index.php b/index.php index a1bcc89..01e605a 100644 --- a/index.php +++ b/index.php @@ -41,7 +41,7 @@ include "sections/front-page-header.php"; include "sections/front-page.php"; } else { - include "sections/header.php"; + include "sections/header.php"; if (is_home() || is_page($GLOBALS['entity_page_slug']."-news")) { include "sections/blog-home.php"; } else if (is_archive()) { diff --git a/lib/navigation.php b/lib/navigation.php index 1f74fc7..2f45693 100644 --- a/lib/navigation.php +++ b/lib/navigation.php @@ -41,7 +41,7 @@ if ( ! function_exists( 'glm_theme_top_bar' ) ) { } if ( ! function_exists( 'government_mobile_off_canvas' ) ) { - function river_mobile_off_canvas() { + function government_mobile_off_canvas() { echo ''; } } if ( ! function_exists( 'chamber_mobile_off_canvas' ) ) { - function river_mobile_off_canvas() { + function chamber_mobile_off_canvas() { echo ''; } } if ( ! function_exists( 'visitors_mobile_off_canvas' ) ) { - function river_mobile_off_canvas() { + function visitors_mobile_off_canvas() { echo ''; } } if ( ! function_exists( 'economic_mobile_off_canvas' ) ) { - function river_mobile_off_canvas() { + function economic_mobile_off_canvas() { echo ''; } -- 2.17.1