Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Make a Website with WordPress Customizing WordPress Themes How to Make Child Themes

andy Tinsley
andy Tinsley
533 Points

child theme plugins

I f you have problems with finding files etc.... would it be o.k to use a child theme plugin

1 Answer

Agustin Grube
Agustin Grube
39,278 Points

Yes, it is ok to use a plug-in to created a child theme, but once you get the hang of it, you won't.

I used this code in the style.css file to create a child theme without a plugin:

/*
Theme Name: [insert name]
Theme URI: [insert theme uri]
Author: [insert your name]
Author URI: [insert your uri]
Description: Child Theme
Version: 1.08
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Template: _____ [this is where you place the name of the parent theme]
*/

Template: is the line that connects to the parent theme.

Agustin Grube
Agustin Grube
39,278 Points

I always create a child theme. You should also.