Para crear un tema hijo se debe seguir los siguientes pasos:
- Ubicarse en el directorio wp-content/themes
- Crear un directorio para el tema. Se recomienda nombrarlo como el tema padre seguido de – y el sufijo child. Ejemplo: yakindu-child
- Crear el archivo style.css de la siguiente manera:
/*
Theme Name: YAKINDU Theme
Theme URL: https://www.yakindu.ec
Description: Plantilla creada para YAKINDU CIA. LTDA.
Theme Author: Mario Morocho
Author URL: http://www.mariomorocho.com
Template: yakindu
Version: 1.0.0
Text Domain: yakindu-child
*/
- Crear el archivo functions.php
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}