You are on page 1of 1

WordPress Theme Development Check List   WP TOY 

I. General  II. Stylesheets

/*   Theme Name:    The Name of your theme  theme root folder 


*     Theme URI:   The URL for more information  • Style.css  
*     Description:   Theme Description 
/css/ folder 
*     Version:   1.0 
• Custom.css 
*     Author:   Your Name 
*     Author URI:   Your URL  • Print.css 
*     Tags:  Red, black, widget‐ready etc   • Reset.css 
*     Template:  If you are building a child theme*/  • ie.css 

III. Browser Compatibility
• Theme Preview Image (screenshot.jpg/screenshot.png/screenshot.gif) 
• Widget Ready Sidebars  • Firefox 2, 3 
• Add Rules to your Comment form  • Internet Explorer 6, 7, 8 
• Backwards Compatibility  (WordPress 2.5 +)  • Google Chrome 
• Add Sample Posts  • Safari 
• Opera 

IV. Pages  V. Styled Everything? VI. Standard CSS Classes 

• Index.php  • H1, h2, h3, h4, h5, h6  • .alignleft 


• Header.php  • Images  • .alignright 
• Sidebar.php  • Blockquotes  • .aligncenter 
• Footer.php  • Tables  • .wp‐caption 
• Single.php   • Captions  • .cat‐item 
• Archive.php   • Unordered lists  • .currentcat 
• Page.php  • Ordered lists  • .current‐cat‐parent 
• Home.php  • .pagenav 
• Author.php  VIII. WordPress Code
• .page_item 
• Comments.php  • .current_page_item 
• Search.php  <?php include(TEMPLATEPATH . ‘/x’); ?>  • .widget 
• Searchform.php  • .linkcat 
<?php the_time('m‐d‐y') ?> 
• Date.php 
• Tag.php  <?php /* Template Name: X */ ?>   IX. Blog Elements
• Category.php 
<?php bloginfo('template_url'); ?> 
• 404.php 
  • Title/Logo 
• Author.php 
• Navigation of Pages 
• Functions.php   The loop 
• Navigation of 
<?php if(have_posts()) : ?>  Categories/Tags 
VII. Validate 
<?php while(have_posts()) : the_post(); ?>  • RSS links 
CSS  • Search Form 
<?php endwhile; ?>  • Archives links 
• Style.css 
HTML (tip: browser > view source)  <?php endif; ?>  • Dates/Timestamps 
• Index.php   • Comments 
See IV.   • Copyright message 
• The other templates.    <!‐‐more‐‐>  • Past/Next links 
• With/without Comments  <!‐‐next page‐‐>  • Back to Top link 
• Login Required   • Advertisements 
• Password Protected  /%category%/%postname%/ 

WordPress Theme Development Check List   WP TOY 

You might also like