What are the best resources for Wordpress theme-development? I am currently in the phase of starting my own blog, and don't want to use one of the many free themes. I already have a theme for my website, so I want to read about best-practices.

Any advice on how to get started would be very welcome :)


I have now created my theme (wohoo!), and thought I should summarize the best resources I found. Lets see..

Resources:

Inspiration:

link

69% accept rate
feedback

15 Answers

up vote 6 down vote accepted

I think that the best way to learn is to look at how other people construct their themes. The first one to start one is the Default Kubrick theme that is included in the standard WordPress install. It has all of the basics and will show you some advanced techniques like including sidebar widgets. Next, in conjunction with the docs on theme development (previously mentioned by Mark), Blog Design and Layout and Using Themes, go to the Theme Directory on the Wordpress.org site, download a couple of popular themes, and go through them, looking up any template tags or techniques that you don't understand. After you do this, you should be more than well-equipped to write your own theme from scratch, or modify an existing theme to your needs.

link
template tags were a big help – helloandre Jan 7 '09 at 17:06
feedback

The Wordpress part is the easy bit. That's basically taking your static HTML pages then converting them to PHP and inserting the Wordpress tags to pull content from the database. In some places these tags will be in a loop, e.g. for a list of pages.

The most difficult part is the design. You should identify the page types you want (e.g. main page, lists of posts, static pages, about) and create the actual templates with mockup text. ONly when you're happy should you think about the Wordpress part.

If you search with Google you'll find plenty of pages on creating your own Wordpress theme or converting HTML to a theme.

link
feedback

Here's another good article on the topic. And of course, there are many more like it. I have reviewed this particular article in the past though, and found it to be a good, detailed tutorial with some nice external references where required.

link
feedback

codex.wordpress.org.

link
feedback

Here's the WordPress doc on Theme Development

link
feedback

I've found this illustration shared by Yoast to be really helpful for explaining how a Wordpress theme is built:

Full image here cropped versin of Yoast image

This is a crop of the full image - I'd suggest checking it the full page there, as it's extremely clear, and very well thought out.

link
feedback

Here is a "starter kit" of sorts that may be of use to you:

http://wpthemerkit.com/

link
feedback

http://www.wordpresscreme.com/

Is a new website but have a good reviews, resources, tips and tutorials

link
feedback

Found a new one over here. it's a good resource if you want to make a simple theme. :)

http://www.webhostingsearch.com/articles/create-your-own-wordpress-theme-tutorial.php

link
feedback

check css-tricks.com Chris has a few screencasts up.

link
feedback

i can't see your location, so i don't know if this link is useful for you (it's a german tutorial for developing themes step by step)

link
feedback

There is a really good book on WordPress Theme Design, called "WordPress Theme Design" :) Available from Amazon and other book stores.

link
feedback

'Starkers' is a great blank WordPress theme to start any theme development.

http://elliotjaystocks.com/blog/2008/free-starkers-wordpress-theme/

link
feedback

This WordPress Meta Box PHP Helper class might help you when working with WordPress Meta Boxes.

link
feedback

I have created a wordpress tabset plug-in for showing a tabset inside a post or page. It may helps you a few. Check it on http://wordpress.org/extend/plugins/postpage-content-anchor-tabset/. Thanks

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.