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:
@@ -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';
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user