🐞 fix: Replace footer widget areas

This commit is contained in:
Keith Solomon
2025-10-16 12:07:34 -05:00
parent b9b9225780
commit 2ba35ddc73

View File

@@ -74,6 +74,27 @@ add_action(
'id' => 'sidebar-page', 'id' => 'sidebar-page',
) + $config ) + $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
);
} }
); );