Book Image

WordPress 2.8 Theme Design

Book Image

WordPress 2.8 Theme Design

Overview of this book

Themes are among the most powerful features that can be used to customize a web site, especially in WordPress. Using custom themes you can brand your site for a particular corporate image, ensure standards compliance, and create easily navigable layouts. But most WordPress users still continue to use default themes as developing and deploying themes that are flexible and easily maintainable is not always straightforward. It's easy to create powerful and professional themes for your WordPress web site when you've got this book to hand. It provides clear, step-by-step instructions to create a robust and flexible WordPress theme, along with best practices for theme development. It will take you through the ins and outs of creating sophisticated professional themes for the WordPress personal publishing platform. It reviews the best practices 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. 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. 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.
Table of Contents (15 chapters)
WordPress 2.8 Theme Design
Credits
About the Author
About the Reviewer
Preface
Index

Plugin hooks


Whether you're developing for the public or for a specific client, or just yourself, you'll still want to create a theme that's robust and can "play well with others". the "others" being plugins. Plugins can be created to add additional functionally to WordPress for just about anything you can imagine, so long as the plugin API offers a "Hook" for it. In general, unless you're a plugin developer, you probably don't have much need to pour over the plugin API. There are, however, a few hooks that should be placed into your theme in order for plugins to work effectively with your theme and be able to reference and display information in your theme, as well as know when to run specific WordPress functions.

We placed three of these four "Action Hooks" into our theme in Chapter 3; here's a little more detail on them:

  • wp_head: Place within the <head> tags of a header.php template:

    <?php wp_head(); ?>
    
  • wp_footer: Place within the footer.php template:

    <?php wp_footer(); ...