From d2d9b3feb0a82ed04e2a66d82af2b5c1b23dd91c Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Thu, 16 Oct 2025 12:33:29 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Update=20footer=20navigat?= =?UTF-8?q?ion=20collection=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- footer.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/footer.php b/footer.php index da9c273..bde27c0 100644 --- a/footer.php +++ b/footer.php @@ -15,7 +15,9 @@ $copyright_text = getFieldValue( 'footer.copyright_text' ) ? getFieldValue( 'foo $copyright = str_replace( '%Y', gmdate( 'Y' ), $copyright_text ); -$footerNav = wp_get_nav_menu_items( 'footer' ); +$locations = get_nav_menu_locations(); +$footerMenu = get_term( $locations['footer_navigation'], 'nav_menu' ); +$footerNav = wp_get_nav_menu_items( $footerMenu->term_id ); ?>