/*
Theme Name: EduBlink Child
Theme URI: https://edublink.co/
Template: edublink
Author: DevsBlink
Author URI: https://themeforest.net/user/devsblink/portfolio
Description: EduBlink Theme For LMS and Education Purpose.
Tags: custom-background,custom-logo,custom-menu,featured-images,threaded-comments,translation-ready
Version: 1.0.20.1788483506
Updated: 2026-09-04 00:58:26

*/

/**
 * EduBlink Child Theme Functions
 */

add_action( 'wp_enqueue_scripts', 'edublink_child_enqueue_styles', 99 );
function edublink_child_enqueue_styles() {
    // Carga los estilos del tema padre EduBlink
    wp_enqueue_style( 'edublink-parent-style', get_template_directory_uri() . '/style.css' );
    
    // Carga los estilos del tema hijo
    wp_enqueue_style( 'edublink-child-style', get_stylesheet_directory_uri() . '/style.css', array( 'edublink-parent-style' ) );
}

// Inyecta la descripción del curso de Tutor LMS arriba del temario
add_action( 'tutor_course/single/before/topics', function() {
    tutor_load_template( 'single.course.course-content' );
}, 5 );


