<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>KitThemes</title>
	<atom:link href="https://www.kitthemes.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kitthemes.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 15 Jun 2020 09:38:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0</generator>

<image>
	<url>https://www.kitthemes.com/wp-content/uploads/2020/01/cropped-site-icon-32x32.png</url>
	<title>KitThemes</title>
	<link>https://www.kitthemes.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">181891453</site>	<item>
		<title>How to create a child theme in WordPress: An Easy, Step-by-Step Guide</title>
		<link>https://www.kitthemes.com/how-to-create-child-theme-in-wordpress/</link>
					<comments>https://www.kitthemes.com/how-to-create-child-theme-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Raju Ahmmed]]></dc:creator>
		<pubDate>Mon, 15 Jun 2020 09:38:52 +0000</pubDate>
				<category><![CDATA[WordPress Theme]]></category>
		<guid isPermaLink="false">https://www.kitthemes.com/?p=37</guid>

					<description><![CDATA[<p>If you want to customize your site appearance, the child theme will be the best choice for you. By knowing a little bit of HTML, CSS and/or PHP, you can customize anything in WordPress.&#160; In this guide, you are going to learn about what is a child and parent theme, why you need a child [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.kitthemes.com/how-to-create-child-theme-in-wordpress/">How to create a child theme in WordPress: An Easy, Step-by-Step Guide</a> appeared first on <a rel="nofollow" href="https://www.kitthemes.com">KitThemes</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you want to customize your site appearance, the child theme will be the best choice for you. By knowing a little bit of HTML, CSS and/or PHP, you can customize anything in WordPress.&nbsp; In this guide, you are going to learn about what is a child and parent theme, why you need a child theme? and a full step by step guide to creating your own WordPress child theme. Also, you will get bonus tips about Business Ideas with Child Theme.</p>



<p>To understand the child theme you need to know what is the parent theme? And the relation between parent and child theme. WordPress has 2 types of themes, One is a parent theme and another one is a child theme. The parent theme is fully complete and has all the necessary files and assets for your site to work. If the parent theme has all the files and assets to work, why do you need a child theme? Good question let’s find out why you need a child theme?</p>



<h2>What is the Child Theme and why do you need to use it?</h2>



<p>WordPress child theme has the ability to inherit the feel and looks from the parent theme. It contains only customized parts or files.&nbsp; Child themes just look the same as parent theme at the WordPress dashboard. You can activate and deactivate the same as the parent theme. The child theme depends on the parent theme to work, Where the parent theme is independent.</p>



<p>If you customize into your parent theme, your all customizations will be lost when the theme will be updated by the developer. One more disadvantage is you will be unable to track your changes. WordPress child theme will give the ability to customize and extend the functionality without touching the original theme files. And, you can keep only changed files into the child theme.</p>



<h2>Requirements</h2>



<p>First of all, you need a parent theme with up and running a WordPress local site. The local server will be best for development. But if you want, you can use a hosting server. In this tutorial, we will use the WordPress default theme <a href="https://wordpress.org/themes/twentytwenty/" target="_blank" rel="noreferrer noopener">Twenty Twenty</a>.</p>



<p>We need a Text Editor like <a href="https://notepad-plus-plus.org/" target="_blank" rel="noreferrer noopener">Notepad++</a>, <a href="https://www.sublimetext.com/" target="_blank" rel="noreferrer noopener">Sublime Text</a>, <a href="https://code.visualstudio.com/" target="_blank" rel="noreferrer noopener">Visual Studio Code</a>, etc. Basic knowledge of HTML, CSS, and PHP to customize the theme. Also, you can copy and paste some code from Stack Overflow or similar sites. But copy and paste is not recommended without understanding the code.</p>



<h2>Let’s create a child theme</h2>



<h3>Step 1: Create your child theme’s folder</h3>



<p>Like parent themes, the child theme will also be located in <code>wp-content/themes</code> folder. Go to <code>wp-content/themes</code> and create a folder. You can name your child theme’s folder as you wish. In this tutorial, the child theme name will be <code>twentytwenty-child</code>.</p>



<figure class="wp-block-image size-large"><img width="720" height="156" src="https://www.kitthemes.com/wp-content/uploads/2020/06/twentytwenty-child.png" alt="Child Theme Folder" class="wp-image-139" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/twentytwenty-child.png 720w, https://www.kitthemes.com/wp-content/uploads/2020/06/twentytwenty-child-300x65.png 300w" sizes="(max-width: 720px) 100vw, 720px" /></figure>



<h3>Step 2: Create your child theme’s <code>style.css</code> file</h3>



<p>After creating the child theme folder, now you need to create a <code>style.css</code> file. This file is most important in the child theme. In the <code>style.css</code> file, you need to declare your child theme name and parent theme slug. Now open your child theme <code>style.css</code> file with Text/Code Editor and paste below code.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">/*
 Theme Name: Twenty Twenty Child
 Theme URI:	https://www.kitthemes.com/
 Description: Twenty Twenty Child Theme
 Author: KitThemes
 Author URI: https://www.kitthemes.com/
 Template: twentytwenty
 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: twentytwentychild
*/
</pre></div>



<p>In this code snippet, <code>Template: twentytwenty</code> line is most important. You need to define your parent theme slug. If your parent theme slug is different, change <code>twentytwenty</code> to your parent theme slug.</p>



<figure class="wp-block-image size-large"><img width="1005" height="352" src="https://www.kitthemes.com/wp-content/uploads/2020/06/style-css.png" alt="Style.css file" class="wp-image-142" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/style-css.png 1005w, https://www.kitthemes.com/wp-content/uploads/2020/06/style-css-300x105.png 300w, https://www.kitthemes.com/wp-content/uploads/2020/06/style-css-768x269.png 768w" sizes="(max-width: 1005px) 100vw, 1005px" /></figure>



<h3>Step 4: Create your child theme’s <code>functions.php</code> file</h3>



<p>Now you need to enqueue your parent theme stylesheets into your child theme. Enqueuing with <code>style.css</code> is not recommended anymore. Best way to enqueue it, using <code>functions.php</code> file. Now, create a file <code>functions.php</code> into your same child theme directory. open your child theme <code>functions.php</code> file with Text/Code Editor and paste below code.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text/x-php&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;functions.php&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;modeName&quot;:&quot;php&quot;}">&lt;?php
add_action( 'wp_enqueue_scripts', 'twentytwenty_child_enqueue_styles' );
function twentytwenty_child_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
</pre></div>



<p>This code will enqueue only parent theme CSS. If you need to enqueue your child theme CSS,</p>



<p>Add this code <code>wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'parent-style' ), wp_get_theme()-&gt;get('Version') );</code> just after parent style. Full code will look like this.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text/x-php&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;functions.php&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;modeName&quot;:&quot;php&quot;}">&lt;?php
add_action( 'wp_enqueue_scripts', 'twentytwenty_child_enqueue_styles' );
function twentytwenty_child_enqueue_styles() {
    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()-&gt;get('Version') );
}
</pre></div>



<figure class="wp-block-image size-large"><img width="1024" height="153" src="https://www.kitthemes.com/wp-content/uploads/2020/06/functions-1024x153.png" alt="functions.php file" class="wp-image-143" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/functions-1024x153.png 1024w, https://www.kitthemes.com/wp-content/uploads/2020/06/functions-300x45.png 300w, https://www.kitthemes.com/wp-content/uploads/2020/06/functions-768x114.png 768w, https://www.kitthemes.com/wp-content/uploads/2020/06/functions.png 1436w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3>Step 5: Active your child theme</h3>



<p>Go to your WordPress dashboard and navigate to <strong>Appearance &gt; Themes</strong>. This time you will see your child theme in the list of themes. Activate it and see your site. It looks the same as your parent theme.</p>



<figure class="wp-block-image size-large"><img width="1024" height="678" src="https://www.kitthemes.com/wp-content/uploads/2020/06/themes-1024x678.png" alt="Child theme in Theme List" class="wp-image-145" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/themes-1024x678.png 1024w, https://www.kitthemes.com/wp-content/uploads/2020/06/themes-300x199.png 300w, https://www.kitthemes.com/wp-content/uploads/2020/06/themes-768x509.png 768w, https://www.kitthemes.com/wp-content/uploads/2020/06/themes.png 1176w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>All Themes</figcaption></figure>



<figure class="wp-block-image size-large"><img width="1024" height="675" src="https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-1024x675.png" alt="Child Theme" class="wp-image-146" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-1024x675.png 1024w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-300x198.png 300w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-768x506.png 768w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme.png 1176w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Child Theme</figcaption></figure>



<h3>Step 6: Start Customizing your child theme</h3>



<p>After activating your child theme, you can start customizing your child theme. Let’s start customizing some CSS of theme. Copy and paste these CSS snippets to your child theme <code>style.css</code> file. Change background color to white with this CSS.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">body {
    background-color:#fff;
}
</pre></div>



<p>Now add a bottom border to the header with this CSS.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">#site-header {
    border-bottom: 1px solid #d3d7e2;
}
</pre></div>



<p>Change the site title, sub-title and all links color color with this CSS.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">.site-title {
    color: #11dec2;
}
.site-description {
    color: #a9b1c5;
}
body:not(.overlay-header) .primary-menu &gt; li &gt; a,
body:not(.overlay-header) .primary-menu &gt; li &gt; .icon,
.modal-menu a,
.footer-menu a,
.footer-widgets a,
#site-footer .wp-block-button.is-style-outline,
.wp-block-pullquote:before,
.singular:not(.overlay-header) .entry-header a,
.archive-header a,
.header-footer-group .color-accent,
.header-footer-group .color-accent-hover:hover{
    color: #11dec2;
}
.color-accent,
.color-accent-hover:hover,
.color-accent-hover:focus,
:root .has-accent-color,
.has-drop-cap:not(:focus):first-letter,
.wp-block-button.is-style-outline,
a{
    color: #11dec2 !important;
}
</pre></div>



<p>Change all button background-color.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">button:not(.toggle),
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type=&quot;button&quot;],
input[type=&quot;reset&quot;],
input[type=&quot;submit&quot;],
.bg-accent,
.bg-accent-hover:hover,
.bg-accent-hover:focus,
:root .has-accent-background-color,
.comment-reply-link{
    background-color:#11dec2 !important;
}
</pre></div>



<p>Add a top border to the footer widget section to separate the content section. Remove short border from footer.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">.footer-nav-widgets-wrapper {
    border-top: 1px solid #d3d7e2;
}
.footer-widgets-outer-wrapper {
    border-bottom: none;
}
</pre></div>



<p>Add background and change text color of the footer copyright section with this CSS.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">#site-footer {
    background-color: #11dec2;
    color: #fff;
}

.powered-by-wordpress,
.to-the-top {
    color: #fff;
}
</pre></div>



<p>Now you will see a new look at your site without touching any code of parent theme. Full CSS code will be.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;style.css&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;modeName&quot;:&quot;css&quot;}">body {
    background-color:#fff;
}

#site-header {
    border-bottom: 1px solid #d3d7e2;
}

.site-title {
    color: #11dec2;
}

.site-description {
    color: #a9b1c5;
}

body:not(.overlay-header) .primary-menu &gt; li &gt; a,
body:not(.overlay-header) .primary-menu &gt; li &gt; .icon,
.modal-menu a,
.footer-menu a,
.footer-widgets a,
#site-footer .wp-block-button.is-style-outline,
.wp-block-pullquote:before,
.singular:not(.overlay-header) .entry-header a,
.archive-header a,
.header-footer-group .color-accent,
.header-footer-group .color-accent-hover:hover{
    color: #11dec2;
}

.color-accent,
.color-accent-hover:hover,
.color-accent-hover:focus,
:root .has-accent-color,
.has-drop-cap:not(:focus):first-letter,
.wp-block-button.is-style-outline,
a{
    color: #11dec2 !important;
}

button:not(.toggle),
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type=&quot;button&quot;],
input[type=&quot;reset&quot;],
input[type=&quot;submit&quot;],
.bg-accent,
.bg-accent-hover:hover,
.bg-accent-hover:focus,
:root .has-accent-background-color,
.comment-reply-link{
    background-color:#11dec2 !important;
}

.footer-nav-widgets-wrapper {
    border-top: 1px solid #d3d7e2;
}

.footer-widgets-outer-wrapper {
    border-bottom: none;
}

#site-footer{
    background-color: #11dec2;
    color: #fff;
}

.powered-by-wordpress,
.to-the-top {
    color: #fff;
}
</pre></div>



<p>Now you know how to change CSS in the child theme. Let’s change some theme files to customize the theme. In our parent theme, <code>twentytwenty</code> have post title first and then post thumbnail. We will customize this into the first post thumbnail then post title. Go to your parent theme folder <code>twentytwenty/template-parts</code> and copy the <code>content.php</code> file into your child theme with the same folder name <code>template-parts</code>. Now open your child theme <code>content.php</code> file with a code editor. Copy and paste this code into your <code>content.php</code> file.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text/x-php&quot;,&quot;theme&quot;:&quot;lucario&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;content.php&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;modeName&quot;:&quot;php&quot;}">&lt;?php
/**
 * The default template for displaying content
 *
 * Used for both singular and index.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage Twenty_Twenty
 * @since Twenty Twenty 1.0
 */

?&gt;

&lt;article &lt;?php post_class(); ?&gt; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;

	&lt;?php
	
	if ( ! is_search() ) {
		get_template_part( 'template-parts/featured-image' );
	}

	get_template_part( 'template-parts/entry-header' );

	?&gt;

	&lt;div class=&quot;post-inner &lt;?php echo is_page_template( 'templates/template-full-width.php' ) ? '' : 'thin'; ?&gt; &quot;&gt;

		&lt;div class=&quot;entry-content&quot;&gt;

			&lt;?php
			if ( is_search() || ! is_singular() &amp;&amp; 'summary' === get_theme_mod( 'blog_content', 'full' ) ) {
				the_excerpt();
			} else {
				the_content( __( 'Continue reading', 'twentytwenty' ) );
			}
			?&gt;

		&lt;/div&gt;&lt;!-- .entry-content --&gt;

	&lt;/div&gt;&lt;!-- .post-inner --&gt;

	&lt;div class=&quot;section-inner&quot;&gt;
		&lt;?php
		wp_link_pages(
			array(
				'before'      =&gt; '&lt;nav class=&quot;post-nav-links bg-light-background&quot; aria-label=&quot;' . esc_attr__( 'Page', 'twentytwenty' ) . '&quot;&gt;&lt;span class=&quot;label&quot;&gt;' . __( 'Pages:', 'twentytwenty' ) . '&lt;/span&gt;',
				'after'       =&gt; '&lt;/nav&gt;',
				'link_before' =&gt; '&lt;span class=&quot;page-number&quot;&gt;',
				'link_after'  =&gt; '&lt;/span&gt;',
			)
		);

		edit_post_link();

		// Single bottom post meta.
		twentytwenty_the_post_meta( get_the_ID(), 'single-bottom' );

		if ( is_single() ) {

			get_template_part( 'template-parts/entry-author-bio' );

		}
		?&gt;

	&lt;/div&gt;&lt;!-- .section-inner --&gt;

	&lt;?php

	if ( is_single() ) {

		get_template_part( 'template-parts/navigation' );

	}

	/**
	 *  Output comments wrapper if it's a post, or if comments are open,
	 * or if there's a comment number – and check for password.
	 * */
	if ( ( is_single() || is_page() ) &amp;&amp; ( comments_open() || get_comments_number() ) &amp;&amp; ! post_password_required() ) {
		?&gt;

		&lt;div class=&quot;comments-wrapper section-inner&quot;&gt;

			&lt;?php comments_template(); ?&gt;

		&lt;/div&gt;&lt;!-- .comments-wrapper --&gt;

		&lt;?php
	}
	?&gt;

&lt;/article&gt;&lt;!-- .post --&gt;
</pre></div>



<p>Your child theme will look like this.</p>



<figure class="wp-block-image size-large"><img width="900" height="1024" src="https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-900x1024.png" alt="Child theme looks after customization" class="wp-image-149" srcset="https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-900x1024.png 900w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-264x300.png 264w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-768x874.png 768w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-1350x1536.png 1350w, https://www.kitthemes.com/wp-content/uploads/2020/06/child-theme-complete-1800x2048.png 1800w" sizes="(max-width: 900px) 100vw, 900px" /></figure>



<p>Now you can customize your full site this way. All your changes will be stored in your child theme. After your parent theme update, you will not lose your changes.</p>



<div class="wp-container-1 wp-block-buttons aligncenter">
<div class="wp-block-button"><a class="wp-block-button__link has-background" href="https://github.com/KitThemes/twentytwenty-child" style="background-color:#09d8c3" target="_blank" rel="noreferrer noopener">Source Code on GitHub</a></div>



<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-background" href="https://www.kitthemes.com/wp-offers/" style="background:linear-gradient(45deg,rgb(236,58,135) 0%,rgb(255,28,90) 100%)" target="_blank" rel="noreferrer noopener">Checkout WP Offers</a></div>
</div>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<h2>Business Ideas with Child Theme</h2>



<p>You can make your full time and part-time both business by selling or giving services. Remember this tip only will work if you have a professional skill or you need to improve your skill to professional level to start your business. I will give you two types of business ideas.</p>



<h3>1. Selling Theme</h3>



<p>You can sell your WordPress child theme. To sell your child theme, you need a parent theme. Create a parent theme and submit it in the WordPress theme directory. After, approve your parent theme, start creating and selling your child theme. You can sell from your own site using <a href="https://woocommerce.com/" target="_blank" rel="noreferrer noopener">WooCommerce</a> or <a href="https://easydigitaldownloads.com/" target="_blank" rel="noreferrer noopener">Easy Digital Downloads</a> or <a href="https://freemius.com/" target="_blank" rel="noreferrer noopener">Freemius</a>.</p>



<h3>2. Service</h3>



<p>You can sell WordPress website building service by using your child theme. Service selling is more reliable. To sell your service you can use <a rel="noreferrer noopener" href="https://www.fiverr.com/" target="_blank">Fiverr</a>, <a href="https://www.peopleperhour.com/" target="_blank" rel="noreferrer noopener">PeoplePerHour</a>, etc. Also, you can sell to local clients through local contacts.</p>



<h2>Conclusion</h2>



<p>Sometimes beginners make some mistakes when creating child themes. If your child theme is not working correctly, please don’t give up quickly. Read this article again and try to resolve your mistakes. It’s normal to make some mistakes.</p>



<p>Now you can create a child theme and start your own business. Also, if you want to get hired by a good company create some child theme and add it to your portfolio. It will help you to get a better job with a better salary.</p>
<p>The post <a rel="nofollow" href="https://www.kitthemes.com/how-to-create-child-theme-in-wordpress/">How to create a child theme in WordPress: An Easy, Step-by-Step Guide</a> appeared first on <a rel="nofollow" href="https://www.kitthemes.com">KitThemes</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.kitthemes.com/how-to-create-child-theme-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">37</post-id>	</item>
	</channel>
</rss>
