From 6d93e1ac5e4a96251fbbe6b1f9399a3eddf35a50 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Mon, 10 Nov 2025 22:05:49 -0600 Subject: [PATCH] =?UTF-8?q?feat(admin):=20Cargar=20m=C3=B3dulo=20del=20Adm?= =?UTF-8?q?in=20Panel=20en=20functions.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Agregar require_once para admin-panel/init.php - Inicializar módulo del Admin Panel (Phase 1-2: Base Structure) - Permitir acceso a configuraciones de componentes del tema Issue: #144 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- functions.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/functions.php b/functions.php index ba592747..764fac4d 100644 --- a/functions.php +++ b/functions.php @@ -263,3 +263,8 @@ if (file_exists(get_template_directory() . '/inc/cta-ab-testing.php')) { if (file_exists(get_template_directory() . '/inc/customizer-cta.php')) { require_once get_template_directory() . '/inc/customizer-cta.php'; } + +// Admin Panel Module (Phase 1-2: Base Structure) +if (file_exists(get_template_directory() . '/admin-panel/init.php')) { + require_once get_template_directory() . '/admin-panel/init.php'; +}