1. How you will create child theme?Â
a) Create a directory for child theme within the existing wp-content/themes directory, give a name to the directory.
b) Now create a style.css file in this newly created directory. And add following code.Â
/*
Theme Name: Twenty Seventeen Child
Theme URL: http://hostinger-tutorials.com
Description: Child Theme - Twenty SeventeenÂ
Author: John Doe
Author URL: http://hostinger-tutorials.com
Template: twentyseventeen
Version: 1.2.0
Text Domain: twentyseventeen-child
*/Â
Custom CSS codes goes hereÂ
Make sure you put parent theme name in Template field because it tells WordPress what the parent theme is.Â
c) Now create a blank functions.php file in the child folder, and add any new php functions needed for the child theme.
d) Now you need to activate the child theme, in admin area go appearance -> themes, you see your newly created child theme and click Activate to activate it.
e) Now when you load the site, it will show no styles at all, so you have to load the CSS from parent themes. For this, copy and paste the following codes to the functions.php file:
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_styles' );
function enqueue_parent_theme_styles() {
  wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>Â
f) Now load your site and you see styles showing up and it's quite look like the parent theme.
g) Now to modify child theme more, you need to add and edit custom.css and other files according toÂ
what your goals are. Use google.com to get more help.
Â
Hope you liked it, don't forget to like & share it.Â
Connect and hire me if you want to learn more -Â
https://www.fiverr.com/mitsol ,Â
https://wordpress.org/plugins/facebook-wall-and-social-integration/