How to Create a Child Themes in WordPress

BestWordpress Registration Plugins 1

If you’ve been a theme developer (or even a tweaker) for any length of time, you will know how important it is to use child themes when building upon an existing theme (rather than creating your own from scratch). Today in this article we are going to discuss how you can create child themes in WordPress.

The issue is mainly with updates. If you make changes to a theme’s files (i.e. anything within the “/themes/yourthemename/” directory), those changes are likely to be overwritten when you next update the theme. A child theme allows you to set up a standalone directory in which you can make create copies of a theme’s files and tweak them away, without fear of your work being overwritten by any future updates.

It may sound a little unusual, but it is extremely common (and best practice). In fact, an entire market has developed for child themes of popular frameworks, such as Thesis and Genesis.

Creating Your Own Child Theme

Fortunately, creating a child theme is a piece of cake – all you need to do is create one folder and one file.

You will need access to your website via either FTP or your hosting provider’s file manager application. I would recommend that you get yourself set up with an FTP account (using software such as Filezilla), as it is easier to add and edit files and folders that way.

1. Creating Your Child Theme’s Folder

Once you have logged into your website via your chosen FTP client, navigate to “/wp-content/themes/”. This directory will contain one or more folders, each of which represents a theme installed on your site.

In this directory, create a new folder. You can name it whatever you like, but I would recommend that you use a descriptive name such as “parent theme-child” (where “parent theme” is the name of your active theme).

Here’s an example:

Child Themes

As you can see, my active theme is “twenty eleven”, so I created a “twenty eleven-child” folder.

2. Creating Your Child Theme’s style.css File

Once you have created your folder, you need to add the one and only file that is required to create a valid child theme – style.css. As you have no doubt guessed, this file will work as an addendum of sorts to your parent theme’s style.css file.

You’ll need to place some vital information inside of this file, so open up your favorite text editor and paste the following into a blank file:

/*
Theme Name: My Child Theme
Theme URI: http: //mysite.com/
Description: This is a custom child theme I have created.
Author: My Name
Author URI: http: //mysite.com/
Template: parenttheme
Version: 0.1
*/

Obviously, a lot of the information above is generic, and you can change it to suit your needs. There is only one variable that you must alter in order for your child theme to be valid – “Template”. This variable is required in order to tell your child theme which parent theme it is related to, and must be changed to match the folder name of your active theme.

There is one other thing of vital importance that you must do. If you were to upload this file in its current state and activate your child theme, WordPress would look to your child theme’s style.css file as the default style file, and see nothing. As a result, your theme would render with absolutely no CSS styling. Therefore, you need to call the parent theme’s CSS file within your child theme’s style.css file, with the following line of code:

@import url("../parenttheme/style.css");

As with the “Template” variable above, you need to change “parent theme” to match the name of your parent theme. If the default stylesheet is not style.css (it almost certainly will be), you will also need to change that to suit as well.

Now when your child theme is activated, WordPress will know to import all of the CSS from your parent theme’s style file before executing any CSS stored in the child theme’s style.css file. Because the CSS contained in your new file will be the last thing WordPress executes, it will take precedence over any preceding CSS.

Once you have added in the above two snippets of necessary information, save your new style.css file to your child theme’s folder. Finally, check out our guide to styling your website with CSS.

3. Activating Your Child Theme

All that is left to do now is activate your child theme.

Navigate to “Appearance > Themes” in your WordPress admin area. At the top of the screen, you will see that your parent theme is active, but you should also see your new child theme listed below:

Child Themes

The information you included in your child theme’s style.css file (such as “Theme Name” and “Author”) will be displayed on this screen.

Just hit “Activate”, and your child theme will go live! Your child theme will then be shown as the active theme:

Child Themes

At this stage, you won’t notice any changes to your theme’s design, because you haven’t actually made any. However, any future additions to your child theme’s style.css will have an effect on your site. And as intended, any future update to your parent theme will not affect your child theme’s style.css file.

4. Making Further Alterations and Additions

At this point, you may be thinking, “Changing my theme’s CSS is all well and good, but what if I want to make changes to my parent theme’s PHP files?”

Fair question and the answer is remarkably simple. If you want to make a change to a specific PHP file in your parent theme, just make a copy of it, and paste that copy into your child theme’s directory. Any changes you make will go live. This is perhaps most applicable for adding additional functionality via functions.PHP, but the same process applies to all available PHP files.

The same process also applies if you want to create new PHP files, such as page templates. Just create the new file in your child theme’s directory, including the relevant information, and you’re good to go.

One thing you must bear in mind is that the directory structure in your child theme should match that of the parent themes. So if you decide to edit a PHP file in “/parent theme/includes/external/PHP/example.php”, you should place it in “/child theme/includes/external/PHP/example.php”.

Wrapping Up

BuddyX ThemeAs you can now see, creating child themes is extremely simple, and you have no excuse not to do so.

Even if you’re only making a few minor tweaks, it pays to spend a few minutes creating a child theme so that you don’t get any nasty surprises when your theme’s next update rolls around. Enjoy!

Interesting Reads:

LifterLMS Review: Is This Online Course Plugin Worth The Money

Selling Courses From Your Own E-learning Website Vs Selling Via Third Party E-learning Platform

Free and Premium University WordPress Themes

Facebook
Twitter
LinkedIn
Pinterest

Newsletter

Get tips, product updates, and discounts straight to your inbox.

Hidden

Name
Privacy(Required)
This field is for validation purposes and should be left unchanged.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.