🎥 How to create a child theme
Check the video tutorial on Youtube
If you are planning to change the code of your theme then WordPress recommends you protect all of your hard work with a Child Theme. This is important if you plan any modification because it is likely that they will be overwritten when you update the theme. The best method of protection is a child theme in which you can make create copies of a theme’s files and tweak them, without fear of it being overwritten by any future theme updates.
Are you using Hestia? Check out how to create a child theme for Hestia.
Are you using Neve? Check out how to create a child theme for Neve.
Instructions:
/* Theme Name: Zelle Pro Child Theme URI: https://www.themeisle.com/ Description: This is a custom child theme I have created. Author: ThemeIsle URI: https://www.themeisle.com/ Template: zerif-pro Version: 0.1 */
Now, we need to load the stylesheet of the parent theme. Create a file named functions.php in the child theme folder, edit it, and paste the following:
<?php add_action( 'wp_enqueue_scripts', 'child_enqueue_styles',99); function child_enqueue_styles() { $parent_style = 'parent-style'; 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 ) ); } if ( get_stylesheet() !== get_template() ) { add_filter( 'pre_update_option_theme_mods_' . get_stylesheet(), function ( $value, $old_value ) { update_option( 'theme_mods_' . get_template(), $value ); return $old_value; // prevent update to child theme mods }, 10, 2 ); add_filter( 'pre_option_theme_mods_' . get_stylesheet(), function ( $default ) { return get_option( 'theme_mods_' . get_template(), $default ); } ); }
That's all. Save all changes.
Head back to Appearance > Themes, in your WordPress dashboard, and activate the new Child theme.
==========================================================================
NOTE: If you're creating a child theme for any other theme, then you would need to replace "Template: zerif-pro" above with the folder name of your theme example " Template: neve".
If you already made some changes in your parent theme from Customizer, then they probably won't appear after activating your child theme. So to solve that, you can use Customizer Export Import plugin.