/** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ // Exit if accessed directly if (!defined('ABSPATH')) exit; /** * Setup My Child Theme's textdomain. * * Declare textdomain for this child theme. * Translations can be filed in the /languages/ directory. */ function drivschol_child_theme_setup() { load_child_theme_textdomain('drivschol-child', get_stylesheet_directory() . '/languages'); } add_action('after_setup_theme', 'drivschol_child_theme_setup'); if (!function_exists('drivschol_child_thm_parent_css')) : function drivschol_child_thm_parent_css() { // loading parent styles wp_enqueue_style('drivschol-parent-style', get_template_directory_uri() . '/style.css', array('drivschol-fonts', 'drivschol-icons', 'bootstrap', 'fontawesome')); // loading child style based on parent style wp_enqueue_style('drivschol-style', get_stylesheet_directory_uri() . '/style.css', array('drivschol-parent-style')); } endif; add_action('wp_enqueue_scripts', 'drivschol_child_thm_parent_css'); // END ENQUEUE PARENT ACTION