From 2ba35ddc730db78b7f4368cbe927d29a42cfb0cc Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Thu, 16 Oct 2025 12:07:34 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Replace=20footer=20widget?= =?UTF-8?q?=20areas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/hooks.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lib/hooks.php b/lib/hooks.php index 126dff3..8c93126 100644 --- a/lib/hooks.php +++ b/lib/hooks.php @@ -74,6 +74,27 @@ add_action( 'id' => 'sidebar-page', ) + $config ); + + register_sidebar( + array( + 'name' => 'Footer Area 1', + 'id' => 'footer-1', + ) + $cfg_foot + ); + + register_sidebar( + array( + 'name' => 'Footer Area 2', + 'id' => 'footer-2', + ) + $cfg_foot + ); + + register_sidebar( + array( + 'name' => 'Footer Area 3', + 'id' => 'footer-3', + ) + $cfg_foot + ); } );