feat(admin): Cargar módulo del Admin Panel en functions.php

- 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 <noreply@anthropic.com>
This commit is contained in:
FrankZamora
2025-11-10 22:05:49 -06:00
parent 59253833a2
commit 6d93e1ac5e

View File

@@ -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')) { if (file_exists(get_template_directory() . '/inc/customizer-cta.php')) {
require_once 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';
}