How to create child theme in WordPress Step by Step without WordPress plugin

()

Way To create child theme in WordPress Step by Step

How to create child theme in WordPress Step by Step without wordpress plugin

Steps to create child theme in wordpress without WordPress plugin

After logging into FTP dashboard ,drag all wordpress twenty seventeen child theme downloaded Files inside /public_html

Download wordpress twenty seventeen child theme latest version of WordPress

Now locate the functions.php file

The location to the file may look like : /home/username/public_html/wp-content/themes/twentyseventeenchild/functions.php

Make a local backup of this file in case anything goes wrong and you may need to revert to previous stable code.

click on it to begin editing it.

Put this below code in your functions.php if its not there or remove exisitng code & paste below code

<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
?>

Now locate the style.css file

Put this below code in your style.css if its not there or remove existing code & paste below code

 

/*
Theme Name: Twenty Seventeen Child
Theme URI: https://share-ask.com
Description: Twenty Seventeen Child
Author: WebsiteBundles
Author URI: https://share-ask.com
Template: twentyseventeen
Version: 1.0.0
Text Domain: Twenty-Seventeen-child
————————————————————– */

/* =Theme customization starts here
——————————————————- */

 

Steps to create child theme in wordpress with WordPress plugin

. Then After logging into WordPress dashboard go to plugin section  at the left hand side and Upload plugin One-Click Child Theme. and activate the plugin.

In WordPress dashboard go to Appearance > child theme from the menu at the left hand side as shown in below pics give it a name ,description click create child button .

one-click child theme tutorial

That’s it! you have created child theme in wordpress with WordPress plugin

How to create a child theme in WordPress video

Must READ  Tutorial Backing,Upgrading Wordpress Manually/Automatically using ftp filezilla,Cpanel,Plugins

This will create child theme in WordPress Step by Step without wordpress plugin

Let me know [email protected]/skype-bpshbp if you have any Query

 

 

 

How useful was this post?

Click on a star to rate it!

Admin

For paid sponsorship & partnership, email our board of admin at [email protected] , [email protected] . Regards. :)

Leave a Reply