Developing Custom
Themes for Clients
Steven Slack
freelance Web Developer @ S2 Web

@slacktronic
s2webpress.com
1mundoreal.org

Rio de Janeiro - 2007
#1 rule in creating custom themes for clients:

Caring!
What is custom?
Tailor made
A custom theme is built specifically
to meet the needs of your client’s
business or project.
Planning

icon by Björn Andersson, from The Noun Project
Purpose & Goals
Content
Determining context
Site Architecture
Determine hierarchy of site navigation and structure
Site Architecture
Determine hierarchy of site navigation and structure

custom post types, taxonomies, featured images,
custom fields, sliders, widget areas, theme
options, etc...
Plan out the features
Do you really need to build a
custom theme?
You may need a custom theme if:
●
●
●
●
●
●

●
●

You need to present different types of content in a unique way
You need to present a plugins presentation in a certain way
To Create a Unique look to the WP theme
To take advantage of templates, template tags, and the WordPress Loop
to generate different website results and looks.
To provide alternative templates for specific site features, such as category
pages and search result pages.
To quickly switch between two site layouts, or to take advantage of a
Theme or style switcher to allow site owners to change the look of your
site.
To provide “some” theme options for custom presentation
To take advantage of custom fields and meta data.
Determining Cost
●

How much does it cost? “It depends”

●

Try it out - Scope out a project as best you can, track your hours
to determine cost for future projects

●

“One size fits all” doesn’t apply - different types of themes are
going to have different prices

●

Stay on track - avoid scope creep and put language about
changes and modifications in the contract.
Time to make something!!
Designing the site
● Work off of site architecture / wireframe
● Design Preference - Browser? Photoshop?
● This is only one portion of the design process not a finished product
Development
There are several ways to begin developing custom themes:

1. Child Themes
2. Theme Frameworks
3. Starter themes
Child Themes
“A WordPress child theme is a theme that inherits the
functionality of another theme, called the parent theme.” - Codex
●
●
●

Inherits parent theme functionality
Good for simple theme modifications - add theme support, custom
backgrounds, changing colors, etc…
keep customization separate from parent theme core functionality

●

allow parent themes to be updated without destroying your modifications

●

take advantage of effort and testing put into parent theme

●

save on development time; no need to recreate the wheel

●

are a great way to get started to learn about theme development
Child Theme Considerations
Parent theme may contain tons of features which you do not need
Theme Frameworks
“A ‘drop-in’ code library that is used to facilitate
development of a Theme” - Codex
●

Developers can leverage a framework’s built-in code, options,
plug-ins, and themes from which to develop.

●

Eliminates the need to re-invent the wheel for each project.

●

Decrease time spent developing a theme
A few popular frameworks:
●

Builder

by iThemes

●

Canvas

by WooThemes

●

Genesis

by StudioPress

●

Hybrid Core

by Justin Tadlock

●

Thesis

by DIYThemes

Review of 10 popular frameworks - torquemag.io/review-10-frameworks
Theme Framework Considerations:
●
●
●
●
●

Adds a layer of complexity to WordPress
More to manage, more to update, and a sometimes a bulkier
admin.
Plugin compatibility
Some frameworks charge for support and updates
Unused features and options
Starter Themes
Base themes with all the essential files and
functions required for a WordPress theme but with
minimal to no styles.
A few places to start:
●

Underscores

- underscores.me

●

Roots

- roots.io

●

Bones

- themble.com/bones
Starter theme considerations
Choosing a starter theme to work with is up to your preference and depends on
the way you like to work.
Example: Roots is built with Twitter Bootstrap and uses LESS. Bones is based
on the HTML5 Boilerplate and is ready for LESS or SASS development.
Using a starter theme gives you control over what features you want to add.
The world is at your fingertips.
You will need some time and skills to build a custom theme with a starter theme
Building the custom theme
Theme Options
● Keep them to a minimum, if possible
● Theme options should affect display
not functionality.
● Use the theme customizer
● Use WordPress Options API
Presentation and Functionality
Generally, when we refer to functionality in
WordPress we are speaking of plugins while themes
handle the presentation.
Functions
Avoid the temptation to put A LOT of
functionality in your functions.php file
Create a library with specific functions
Functionality
E-Commerce
Advanced Search
Slider
Directory

Events Calendar
Shortcodes
Portfolio
Front-end Registration
Required Plugins?
How about suggested plugins?
TGM Plugin Activation
The best way to require and recommend plugins for
WordPress themes (and other plugins)
tgmpluginactivation.com
Put extra functions into a plugin.
Data Portability
Organization & Maintenance
Portable Plugin
Easier to debug
Separation of concerns
Wrap plugin functions in conditionals in the theme
<?php // if Advanced Custom Fields function exists and the
field is not empty display the field
if ( function_exists( 'get_field' ) ) {
if( get_field( 'some_custom_field' )
the_field( 'some_custom_field' );
}
}

) {

?>

If the plugin is disabled you will avoid receiving error messages or a blank screen.
Take your
shortcodes
with you

sh

od
ortc

es
What does the business owner get?
A well organized WordPress
environment will have a cost benefit to
the client, business, or individual
A more stable environment will save you time on
debugging, fixing problems or moving data,
hence saving your client money.
Best Practices
Follow WordPress Coding Standards
make.wordpress.org/core/handbook/coding-standards
Debug!
●

Set WP_debug to true in your wp_config.php file.

●

Use developer plugins - wordpress.org/plugins/developer

/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', true );
Use the theme check plugin
Performance
●
●
●
●

minimize http requests
minify scripts and styles
reduce image sizes
use sprites in your theme images
Reviewing the theme with
the client
“Can we make this area a scroll area?”
“I want this to be a dropdown box.”
“When you click on this button I want it to go to the contact page.”
“I don’t really understand what all this Lorem Ipsum is?”
“That wasn’t in the mockup.”
“That looked different in the mockup.”
“These aren’t my photos!”
“What are we looking at here? I don’t understand.”
Present the theme to the
client with their content
● Load the clients content into WordPress. Hire
someone if necessary
● Present client site on your test server (staging site)
● If they already have a WP site - export their data
and import it into your development environment
● Disable search engine visibility in Settings =>
Reading
Fine tune the theme
Deploy!
-Take the custom theme
live
● Use an under construction plugin while
prepping the site.
● Upload theme and plugins
● Upload data if needed.
● Configure theme and plugin settings
● Double check everything
Training, Support,
and the Future
Training Resources
●
●
●

Video Tutorials
PDF Guide
WP Beginner

- WP101.com
- WP Easy Guide ( easywpguide.com )
- Beginners guide to WordPress ( wpbeginner.com )
Support ?
● Managed Support - managewp.com
● Case by case bug / improvements
● Managed WordPress maintainence fantasktic.com, wpmaintainer.com,
maintainn.com
Thanks !!
Thoughts? Insights? Questions?

Developing Custom WordPress Themes for Clients

  • 1.
  • 2.
    Steven Slack freelance WebDeveloper @ S2 Web @slacktronic s2webpress.com
  • 3.
  • 4.
    #1 rule increating custom themes for clients: Caring!
  • 5.
  • 6.
    Tailor made A customtheme is built specifically to meet the needs of your client’s business or project.
  • 7.
    Planning icon by BjörnAndersson, from The Noun Project
  • 8.
  • 9.
  • 10.
    Site Architecture Determine hierarchyof site navigation and structure
  • 11.
    Site Architecture Determine hierarchyof site navigation and structure custom post types, taxonomies, featured images, custom fields, sliders, widget areas, theme options, etc...
  • 12.
    Plan out thefeatures
  • 13.
    Do you reallyneed to build a custom theme?
  • 14.
    You may needa custom theme if: ● ● ● ● ● ● ● ● You need to present different types of content in a unique way You need to present a plugins presentation in a certain way To Create a Unique look to the WP theme To take advantage of templates, template tags, and the WordPress Loop to generate different website results and looks. To provide alternative templates for specific site features, such as category pages and search result pages. To quickly switch between two site layouts, or to take advantage of a Theme or style switcher to allow site owners to change the look of your site. To provide “some” theme options for custom presentation To take advantage of custom fields and meta data.
  • 15.
  • 16.
    ● How much doesit cost? “It depends” ● Try it out - Scope out a project as best you can, track your hours to determine cost for future projects ● “One size fits all” doesn’t apply - different types of themes are going to have different prices ● Stay on track - avoid scope creep and put language about changes and modifications in the contract.
  • 17.
    Time to makesomething!!
  • 18.
    Designing the site ●Work off of site architecture / wireframe ● Design Preference - Browser? Photoshop? ● This is only one portion of the design process not a finished product
  • 19.
    Development There are severalways to begin developing custom themes: 1. Child Themes 2. Theme Frameworks 3. Starter themes
  • 20.
    Child Themes “A WordPresschild theme is a theme that inherits the functionality of another theme, called the parent theme.” - Codex ● ● ● Inherits parent theme functionality Good for simple theme modifications - add theme support, custom backgrounds, changing colors, etc… keep customization separate from parent theme core functionality ● allow parent themes to be updated without destroying your modifications ● take advantage of effort and testing put into parent theme ● save on development time; no need to recreate the wheel ● are a great way to get started to learn about theme development
  • 21.
    Child Theme Considerations Parenttheme may contain tons of features which you do not need
  • 22.
    Theme Frameworks “A ‘drop-in’code library that is used to facilitate development of a Theme” - Codex ● Developers can leverage a framework’s built-in code, options, plug-ins, and themes from which to develop. ● Eliminates the need to re-invent the wheel for each project. ● Decrease time spent developing a theme
  • 23.
    A few popularframeworks: ● Builder by iThemes ● Canvas by WooThemes ● Genesis by StudioPress ● Hybrid Core by Justin Tadlock ● Thesis by DIYThemes Review of 10 popular frameworks - torquemag.io/review-10-frameworks
  • 24.
    Theme Framework Considerations: ● ● ● ● ● Addsa layer of complexity to WordPress More to manage, more to update, and a sometimes a bulkier admin. Plugin compatibility Some frameworks charge for support and updates Unused features and options
  • 25.
    Starter Themes Base themeswith all the essential files and functions required for a WordPress theme but with minimal to no styles.
  • 26.
    A few placesto start: ● Underscores - underscores.me ● Roots - roots.io ● Bones - themble.com/bones
  • 27.
    Starter theme considerations Choosinga starter theme to work with is up to your preference and depends on the way you like to work. Example: Roots is built with Twitter Bootstrap and uses LESS. Bones is based on the HTML5 Boilerplate and is ready for LESS or SASS development. Using a starter theme gives you control over what features you want to add. The world is at your fingertips. You will need some time and skills to build a custom theme with a starter theme
  • 28.
  • 29.
    Theme Options ● Keepthem to a minimum, if possible ● Theme options should affect display not functionality. ● Use the theme customizer ● Use WordPress Options API
  • 30.
    Presentation and Functionality Generally,when we refer to functionality in WordPress we are speaking of plugins while themes handle the presentation.
  • 31.
    Functions Avoid the temptationto put A LOT of functionality in your functions.php file Create a library with specific functions
  • 32.
  • 33.
    Required Plugins? How aboutsuggested plugins? TGM Plugin Activation The best way to require and recommend plugins for WordPress themes (and other plugins) tgmpluginactivation.com
  • 34.
    Put extra functionsinto a plugin.
  • 35.
  • 36.
    Organization & Maintenance PortablePlugin Easier to debug Separation of concerns
  • 37.
    Wrap plugin functionsin conditionals in the theme <?php // if Advanced Custom Fields function exists and the field is not empty display the field if ( function_exists( 'get_field' ) ) { if( get_field( 'some_custom_field' ) the_field( 'some_custom_field' ); } } ) { ?> If the plugin is disabled you will avoid receiving error messages or a blank screen.
  • 38.
  • 39.
    What does thebusiness owner get?
  • 40.
    A well organizedWordPress environment will have a cost benefit to the client, business, or individual
  • 41.
    A more stableenvironment will save you time on debugging, fixing problems or moving data, hence saving your client money.
  • 42.
  • 43.
    Follow WordPress CodingStandards make.wordpress.org/core/handbook/coding-standards
  • 44.
    Debug! ● Set WP_debug totrue in your wp_config.php file. ● Use developer plugins - wordpress.org/plugins/developer /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. */ define('WP_DEBUG', true );
  • 45.
    Use the themecheck plugin
  • 48.
    Performance ● ● ● ● minimize http requests minifyscripts and styles reduce image sizes use sprites in your theme images
  • 49.
    Reviewing the themewith the client
  • 50.
    “Can we makethis area a scroll area?” “I want this to be a dropdown box.” “When you click on this button I want it to go to the contact page.” “I don’t really understand what all this Lorem Ipsum is?” “That wasn’t in the mockup.” “That looked different in the mockup.” “These aren’t my photos!” “What are we looking at here? I don’t understand.”
  • 51.
    Present the themeto the client with their content ● Load the clients content into WordPress. Hire someone if necessary ● Present client site on your test server (staging site) ● If they already have a WP site - export their data and import it into your development environment ● Disable search engine visibility in Settings => Reading
  • 52.
  • 53.
  • 54.
    ● Use anunder construction plugin while prepping the site. ● Upload theme and plugins ● Upload data if needed. ● Configure theme and plugin settings ● Double check everything
  • 55.
  • 56.
    Training Resources ● ● ● Video Tutorials PDFGuide WP Beginner - WP101.com - WP Easy Guide ( easywpguide.com ) - Beginners guide to WordPress ( wpbeginner.com )
  • 57.
  • 58.
    ● Managed Support- managewp.com ● Case by case bug / improvements ● Managed WordPress maintainence fantasktic.com, wpmaintainer.com, maintainn.com
  • 59.