1- Como primer paso te diriges al administrador de archivos de tu hosting.

2- Buscas la carpeta public_html (1), wp-content (2), y themes (3) dentro de la cual creas una carpeta que va a llevar el nombre del tema hijo (4).

3- Dentro de la carpeta que va a llevar el tema hijo (1) creas los 2 archivos: functions.php y style.css

4- Seleccionas el primer archivo style.css y seguido esto la opción editar

5- Pegas el siguiente código en el cual modificas tus datos. Lo campos mas importantes aquí son Theme Name en el cual debes colocar un nombre único para tu tema hijo (Puedes escoger el que gustes) y Template, el cual es el nombre de tu tema padre en minúsculas y sin espacios (Ojo: Si no colocas bien este nombre el tema hijo no va a funcionar correctamente )
/*
Theme Name: Twenty Fifteen Child
Theme URI: http://example.com/twenty-fifteen-child/
Description: Twenty Fifteen Child Theme
Author: John Doe
Author URI: http://example.com
Template: twentyfifteen
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twentyfifteenchild
*/
Finalmente buscas en la esquina superior derecha SAVE CHANGES ó guardar cambios y cierras el archivo.
6- Acto seguido abres functions.php copias el siguiente código tal como esta y guardas los cambios.
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
7- Finalmente activas el tema hijo.
