Apasionado por la tecnología, los proyectos y el liderazgo. Fundador de YAKINDU CIA. LTDA. y SIGHTBOT S.A.S. Ingeniero en Sistemas y Máster en Innovación y Transformación Digital. Soy el CEO de YAKINDU e Ingeniero de Software en Creditú. He liderado varios proyectos tecnológicos para empresas públicas y privadas. Creo que el Ecuador puede transformarse digitalmente para ser mas competitivos y entregar valor al mundo.
Create a childtheme on WordPress
Create a childtheme on WordPress

Create a childtheme on WordPress

For creating a childtheme you have to follow these steps:

  1. Ubicarse en el directorio wp-content/themes
  2. Create a directory for the theme. It is recommended to name it as the parent topic followed by – and the suffix child. Example: yakindu-child
  3. Create the file style.css as follow:
/* 
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 
*/
  1. Create the file 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' );
}

Leave a Reply

Your email address will not be published. Required fields are marked *