Book Image

WordPress Theme Design

By : Tessa Blakeley Silver
Book Image

WordPress Theme Design

By: Tessa Blakeley Silver

Overview of this book

<p>This title will take you through the ins and outs of creating sophisticated professional themes for the WordPress personal publishing platform. It will walk you through clear, step-by-step instructions to build a custom WordPress theme. From development tools and setting up your WordPress sandbox, through design tips and suggestions, to setting up your theme's template structure, coding markup, testing and debugging, to taking it live it reviews the best practices. The last three chapters are dedicated to additional tips, tricks and various cookbook recipes for adding popular site enhancements to your WordPress theme designs using third-party plugins.<br /><br />Whether you're working with a pre-existing theme or creating a new one from the ground up, WordPress Theme Design will give you the know-how to understand how themes work within the WordPress blog system, enabling you to take full control over your site's design and branding.</p>
Table of Contents (13 chapters)
WordPress Theme Design
Credits
About the Author
Preface

WordPress Perks


As you're interested in generating custom themes for WordPress, you'll be very happy to know (especially all you web standards evangelists), that WordPress really does separate content from design.

You may already know from painful experience that many CMS and blog systems end up publishing their content pre-wrapped in (sometimes large) chunks of layout markup (sometimes using table markup), peppered with all sorts of pre-determined selector id and class names.

You usually have to do a fair amount of 'sleuthing' to figure out what these id and classes are, so that you can create custom CSS rules for them. This is very time consuming.

The good news is, WordPress only publishes two things:

  • The site's textual content—the text you enter into the post and the page Administration Panels.

  • Supplemental site content wrapped in list tags—<li> and</li>—which usually links to the posts and pages you've entered and the meta information for those items.

That's it! The list tags don't even have an ordered or unordered defining tag around them. WordPress leaves that up to you. You decide how everything published via WordPress is styled and displayed.

The culmination of all those styling and display decisions along with special WordPress template tags, which pull your site's content into design, are what your WordPress theme consists of.