This is just a test.
In this lesson you will learn what a Child Theme is and when should you use one? This step-by-step walkthrough will give you an understanding of what a Child Theme is and how to create your own Child Theme.
After completing this lesson, you will be able to:
- Explain what is a Child Theme.
- Summarize why Child Themes are used.
- Create a Child Theme.
You will be better equipped to work through this lesson if you have experience in and familiarity with:
- Basic knowledge of HTML/CSS
- Basic knowledge of installing and activating WordPress themes
- Understanding of how folders and files are structured
- Ability to edit files with a text editor
- Are you familiar with installing and activating themes via the WordPress Dashboard?
- Do you have at least a basic knowledge of HTML/CSS?
- Do you feel comfortable using a text editor to edit code?
- Will you have a locally or remotely hosted sandbox WordPress site to use during class?
- Performing a live demo while teaching the steps to make a child theme is crucial to having the material "click" for students.
- It is easiest for students to work on a locally installed copy of WordPress. Set some time aside before class to assist students with installing WordPress locally if they need it. For more information on how to install WordPress locally, please visit our Teacher Resources page.
- The preferred answers to the screening questions is "yes." Participants who reply "no" to all 4 questions may not be ready for this lesson.
Welcome to Child Themes! Today, you are going to learn how to make a Child Theme for WordPress. One of the first things front-end designers want to do is modify the design of an existing WordPress theme. After a little investigation, we discover where the theme files live, then directly edit the files. After the next theme update, we are horrified to discover that the update completely erased all of our modifications. Many of us have learned this lesson the hard way. How do you prevent this from happening? By using a Child Theme! A Child Theme is a theme that overrides and adds elements to another theme (the "Parent" theme) without touching any of the Parent Theme's code. When the Parent Theme is updated, your changes in the Child Theme will be preserved.
The #1 Rule of WordPress development is to never directly modify WordPress files. This means do not edit:
- WordPress core files
- Plugin files
- Theme files*
Why?
-
- Updates wipe out customization changes
If a modified theme is updated, all customization will be overwritten. Similarly, when a plugin is updated, any edits will be overwritten. Same for WordPress core files.
-
- Themes can get broken
If theme files are edited directly and a mistake is made that cannot be undone, you are stuck with a broken theme.
-
- WordPress and WordPress Plugins may not work with theme hacks
Elements that WordPress and WordPress plugins look for in a theme may be accidentally removed and no longer work. So how do you safely customize a WordPress theme? Create a Child Theme that is a "child" of another theme (the Parent Theme).
- The Child Theme overrides selected design elements and otherwise falls back to the Parent.
- The Child Theme can also override or add functionality to the Parent Theme.
*Exception: starter themes that have been intentionally created by theme builders for you to modify
A Child Theme loads first, before the Parent, and only contains overrides and additions to the Parent Theme. All of your CSS, templates, images, and other files are kept in the Child Theme's folder while the original Parent Theme's files are left intact. If something breaks, you can simply delete or fix the offending file in the Child Theme folder.
You are going to create a Child Theme of the default WordPress theme Twenty Thirteen. We'll name this Child Theme "Awesome". A Child Theme only needs a few things to get up and running: a theme folder, a CSS file, and a screenshot file.
Every theme for WordPress needs its own folder. Take a look at the folder structure of WordPress. You can see each installed theme's folder in /wp-content/themes
Create a folder for your Child Theme. The folder name should be all lowercase with no spaces. In our example the Child Theme's folder is called "awesome."
At a minimum, your Child Theme needs a style.css
file. The style.css
file tells WordPress to load the Parent Theme's files after the Child. Place this file inside the Child Theme's folder. Make sure it is in the root level of the theme folder and not inside a subfolder. The style.css
file needs the following code at the top:
/*
Theme Name: [Your Theme Name]
Description: The custom theme [Your Theme Name] using the parent theme Twenty Thirteen.
Author: [You]
Author URI: [Your URL]
Template: twentythirteen
Version: 1
*/
The parent theme's folder Here is an explanation of the different variables in style.css:
- Theme Name: The Name of the theme. This is the name that shows up in the WordPress Dashboard under Appearance > Themes.
- Description: A short description for the theme. You can put anything you like here. This shows up in the WordPress Dashboard under Appearance > Themes once the theme is activated.
- Author: The author of the Child Theme. A person's name or company name can be entered here.
- Author URI: The URL for the author of the Child Theme.
- Template: Very Important! This is the folder name of the parent theme. If this variable is not correct the Child Theme will not work.
- Version: The version of the Child Theme
All of these variables are optional, with the exception of **Template:**
. If this lines is not present or contains typos the Child Theme will not work.
Your Child Theme needs to call the style.css
files using a method called "enqueueing scripts." To add the calls for the parent and child theme stylesheets to your child theme, first you need to create a functions.php
file. Place this file inside the Child Theme's folder. Make sure it is in the root level of the theme folder and not inside a subfolder. [tip]Note that functions.php in the child theme does not replace functions.php in the parent theme. Normally hooks, actions and filters are used to modify or add functionality to the parent theme.[/tip] The first line of your child theme's functions.php will be an opening PHP tag (<?php
), after which you can enqueue your parent and child theme stylesheets. The correct method of enqueuing the parent theme stylesheet is to add a wp_enqueue_scripts
action and use wp_enqueue_style()
in your child theme's functions.php. The following example function will only work if your Parent Theme uses only one main style.css
to hold all of the css. If your theme has more than one .css file (eg. ie.css
, style.css
, main.css
) then you will have to make sure to maintain all of the Parent Theme dependencies.
add_action( 'wp_enqueue_scripts', 'awesome_enqueue_styles' );
function awesome_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
This line needs to point to the Parent Theme’s style.css
file. Your child theme's stylesheet will usually be loaded automatically. If it is not, you will need to enqueue it as well. Setting 'parent-style' as a dependency will ensure that the child theme stylesheet loads after it.
function awesome_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 ) ); } add_action( 'wp_enqueue_scripts', 'awesome_enqueue_styles' );
A theme's screenshot is the thumbnail image that shows up under Appearance > Themes in the WordPress Dashboard. A screenshot image is not required for a Child Theme, but it will look sad without one. The recommended image size is 880x660. The screenshot will only be shown as 387x290, but the larger image allows for high-resolution viewing on HiDPI displays. Create a 880px by 660px image file, name it "screenshot.png", and place it into the child theme's folder. If you don't have an image editor, download a sample screenshot.png file.
You now have everything you need to create a Child Theme! Make sure the Child Theme folder containing at least style.css
is uploaded or pushed to /wp-content/themes
on the webserver, or your computer if you are working on a local WordPress install. After the theme folder is added to /wp-content/themes
go to Appearance > Themes in the Dashboard. You should see your theme listed. Hover over your theme to reveal the "Activate" button. Click to activate your theme. Once activated, the site will not look any differently on the front-end, but the Child Theme will be the theme in charge. You can now see your theme labeled as "active".
The files in our example Child Theme illustrate how a Child Theme's files affect the Parent's files: they either override elements and add functionality to its identically named file, or completely replaces it.
style.css
in Awesome overrides elements and adds to style.css
in Twenty Thirteen while screenshot.png
completely replaces the copy of screenshot.png
in Twenty Thirteen.
The Child Theme's style.css file will override styles in the Parent Theme's style.css file with the same selectors. Let's say you wanted to change the size of the Site Title in the header. Inspecting that element reveals the CSS selector .site-title
sets the font size at 60px. In the Child Theme's
style.css
file, add the selector and the font-size you want to change the Site Title to:
.site-title { font-size: 40px; }
Now the Site Title is 40px instead of 60px.
Templates are the files that control how your WordPress site will be displayed on the Web. Inside the twentythirteen
folder are all of Twenty Thirteen's template files. You can create your own versions of these files in your Child Theme. Let's say you want to replace the text "Proudly powered by WordPress" in the footer with a copyright. Here's how it looks now:
Open
footer.php
in the twentythirteen
folder. You can see the code that needs to be edited:
Save a copy of footer.php
into the Child Theme folder. Edits can safely be made to the Child Theme file, leaving the original copy of footer.php
in wp-content/themes/twentythirteen
intact. Just like our other Child Theme files, wp-content/themes/awesome/footer.php
will override the Parent copy. To display a Copyright line, replace the content of footer.php
in wp-content/themes/awesome
with the following code:
Copyright ©
The result on the front-end of the site:
In addition to being able to override existing templates with a Child Theme, you can also create new templates. Let's say you want to add a new Template without a sidebar. Make a copy of page.php
in your Child Theme and rename it page-nosidebar.php
. Edit the existing code at the top:
To:
The name of the template goes after the variable Template Name:
. Finally, find and remove the line of code which loads the sidebar. This is called get_sidebar();
:
The new template will now appear under Page Attributes on the Edit Page screen:
Your Child Theme now has 1 file that overrides elements in its Parent Theme's file, 2 files that replace files in the Parent Theme, and 1 brand new file that does not exist in the Parent Theme. When the Parent Theme is updated, none of these Child Theme files will be modified. Child Themes are a safe and powerful way to override and add elements to an existing theme. Now that you know how to make one, go forth and make some awesome looking sites!
Create a child theme of Twenty Fourteen
- What folders and files did you need to create?
- Did your theme show up under Appearance > Themes in the Dashboard? If not, what steps did you take to troubleshoot?
Change all the links in your theme to red, active links to green, and visited links to orange
- What file did you need to edit to do accomplish this?
- What selectors did you apply the new color styles to?
- How did you determine the selectors to use?
Change the "Proudly powered by WordPress" message in the site footer
- What file did you need to create?
- What steps did you take to create the file and change the message?
Make a new template for the home page with no sidebar.
- What file did you create?
- What steps did you take to create the file?
- What code did you add to make it a new template?
- How did you remove the sidebar?
- How did you assign the new template to the home page of your site?
When developing for WordPress, what files should you never edit?
- Core WordPress files
- Plugin files
- Theme files
- All of the above
Answer: 4. All of the above
What file must you create to make a child theme?
- functions.php
- index.html
- style.css
- readme.html
- license.txt
Answer: 3. style.css
What two lines must be included in the style.css file of your Child Theme in order for it to work properly?
Theme Name: [Name] and Template: [parentfolder]
Theme Name: [Name] and Version: [#]
Description: [Theme description and @import url("../parentfolder/style.css");]
Template: [parentfolder] and @import url("../parentfolder/style.css");
Theme Name: [Name] and @import url("../parentfolder/style.css");
Answer: 4. Template: [parentfolder] and @import url("../parentfolder/style.css");
How do you get a picture of your theme to show up under Appearance > Themes in the Dashboard?
- Upload screenshot.png to the child theme folder
- Upload screenshot.png to the the parent theme folder
- Upload screenshot.png to the /images folder of /wp-admin/
- Upload screenshot.png to the /images folder in /wp-content/
Answer: 1. Upload screenshot.png to the child theme folder
Using Themes @ Codex