paginawp1

<?php
// Cargar estilos del tema padre e hijo
add_action("wp_enqueue_scripts", function() {
    
wp_enqueue_style("astra-style"get_template_directory_uri() . "/style.css");
});
add_action("wp_enqueue_scripts", function() {
    
wp_enqueue_style("astra-hijo-style"get_stylesheet_uri());
}, 
20);

// Mostrar hola1.php (prioridad 10)
add_action("astra_content_top", function() {
    if (
is_page("pagina-hola")) {
        
get_template_part("hola1");
    }
}, 
10);

// Mostrar hola2.php (prioridad 20)
add_action("astra_content_top", function() {
    if (
is_page("pagina-hola")) {
        
get_template_part("hola2");
    }
}, 
20);

// Mostrar hola3.php (prioridad 30)
add_action("astra_content_top", function() {
    if (
is_page("pagina-hola")) {
        
get_template_part("hola3");
    }
}, 
30);
?>
Scroll al inicio