• Skip to main content
  • Skip to primary sidebar
  • Skip to footer

nSiteful Web Builders

Building a Better Web - One Site at a Time.

  • Home
  • About
    • Testimonials
  • Web Sites
  • Online Marketing
  • WordPress Support
    • Customized WordPress Training
  • Web Applications
  • Blog
    • Archive Listing Minimalistic
    • Blog Articles Grouped by Category
    • Case Studies
    • General
    • Portfolio
    • Reviews
    • Snippets
    • Techniques
  • Contact Jeff
    • Purchase Retainer Consulting Hours
    • About Retainer Consulting Hours

By Jeff Cohan, May 28, 2015

Customizing WordPress Using Vendor-Built Child Themes

customizing-wordpressAlmost without exception, whenever I build a WordPress Web site using a theme that could be updated in the future, I create a child theme and use it as the basis for the site. As I try to explain in this post from May of 2012, the child theme method effectively ensures that the modifications I make are preserved when the parent theme is updated. The child theme method is also a great way to stay out of the kind of trouble you can potentially get yourself into by messing with parent theme files.

Except for…

One exception is when I’m building a site based on what I’ll refer to as a vendor-built child theme. Examples of such child themes are all of the StudioPress themes (which are child themes of the Genesis theme) and the child themes of the WooThemes Storefront theme.

Since StudioPress’ child themes are (supposedly) never updated, they represent a unique class of vendor-built child themes. So let’s focus on WooThemes’ Storefront child themes — which can be updated and are.

The child theme method doesn’t work so well when customizing WordPress sites based on vendor-built child themes. If I make changes to a Storefront child theme’s functions.php or style.css files, those changes will be overwritten when the child theme is updated. Not good.

What to do?

Grandchild Theme?

A tempting approach might be to create a child theme of the child theme &mdash or a grandchild theme. Although this is possible, it is not recommended (here and here, for example).

Grandchild themes are not natively supported by WordPress, and they add levels of complexity and opportunities for problems to arise.

A Better Way

Here’s the approach I just implemented for a WooThemes Storefront child theme: I place my customizations in the site’s mu-plugins directory.

Suppose I want to add some new CSS rules. I will create a css file (call it custom.css) and upload it to the mu-plugins directory.

Then I’ll create a php file (call it functions.php) with the following lines of code and upload it to the mu-plugins directory.

Here’s the code, which utilizes a few WordPress functions/hooks:

function nwb_enqueue_scripts() {
	wp_enqueue_style( 'nwb', plugins_url('custom.css', __FILE__) );
}
add_action( 'wp_enqueue_scripts', 'nwb_enqueue_scripts' );

Note: Instructions in php files stored in a site’s mu-plugins directory are automatically read and excecuted (in alphabetical order) before normal plugins and before the theme’s functions.php file. Therefore, the above script effectively adds the custom.css style sheet to the head tag of every page of the site before any other theme- or plugin-related style sheets. If I want custom.css to load after another style sheet (e.g., after the main style sheet for the theme), I would include the optional third “dependencies” parameter in the wp_enqueue_style function.

Reference information on WordPress functions/hooks:

  • wp_enqueue_style()
  • plugins_url()
  • wp_enqueue_scripts()

Comments Welcome

I concede that my mu-plugins approach for customizing CSS swims against the tide of conventional wisdom on the plugin vs. functions.php debate.

I welcome your comments. How do you handle customizations for Web sites based on vendor-built child themes?

You might also enjoy...

NextGen Gallery Compact Album Mods What are WordPress Post Formats, and why should I care? ScreenshotDisplay WordPress and WooCommerce Tags as Lists Default ThumbnailChild Themes – WordCamp ATL 2012 Presentation What to look for in WordPress themes: Pluggability
  • Choose the best match.

Written by Jeff Cohan · Categorized: Techniques · Tagged: Child Themes, mu-plugins, WooThemes, WordPress

  • Choose the best match.

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar

mailchimp signup

Subscribe to get notified when new articles are published. Unsubscribe any time. No spam. I promise. Check out my newsletter archives.

social

Twitter Facebook LinkedIn

Recent Articles

  • How To Add Custom Contextual Help Content To The WordPress Dashboard September 19, 2020
  • WordPress Manual Excerpts: Why, When, & How to Use Them August 12, 2020
  • How to Build Stunning WordPress Photo Galleries Quickly and Easily With FooGallery PRO June 17, 2020
  • How to Hide the Mai Lifestyle Pro Banner Area With Code June 15, 2020
  • Sharing Blog Posts on Social Networks: How and Why June 11, 2020

Filter By Category/Tag

Categories

  • Case Studies (7)
  • General (57)
  • Portfolio (4)
  • Reviews (11)
  • Snippets (13)
  • Techniques (33)

Popular Tags

Advanced Custom Fields Arrays Blogging Child Themes Content Marketing CSS Customer Service Custom Fields Custom Post Types Diagnostics Email Facebook FooGallery Genesis HTML Images iPhone Libra Live Chat Marketing Media MySQL NextGen Gallery PayPal Photo Gallery php Pinterest Plugins Post Formats Pricing Programming Project Management SEO Seth Godin Shortcodes Social Networking Surveys Tables Taxonomies Twitter Web design Web forms WordBooker WordPress YouTube

partners

siteground wp hosting

Web Hosting

Footer

Background

Web Sites | WordPress Support | Web Applications.

Formally trained in liberal arts and education (I have a B.A. in Government from Harvard and studied Secondary Education at Rutgers Graduate School), I have honed my skills in the communication arts and sciences as a teacher, trainer, instructional designer, writer, photographer, calligrapher, helpdesk manager, database programmer, and multimedia developer.

(I've also been a group counselor, waiter, bartender, bicycle messenger boy, computer salesman, carpenter's helper, financial analyst, and school board president.)

Tech

Systems since 1983.
Web sites since 1994.
PHP since 2001.
WordPress since 2007.

Contact

770-772-5134
Email Jeff
Send Money
All Ways

Copyright 2021, nSiteful Web Builders, Inc.

Subscribe

Pardon the interruption. I know popups can be annoying. But I’d love to have you as a subscriber.

Sign up to be notified when new articles are published. Unsubscribe any time.

* indicates required

Powered by MailChimp

×