Todays post is sponsored by: Web Inspiration.

To create a theme (since version 2.2) is to make the theme widget enabled, so this is how you do one.

In order to make a theme widgetized, we have to do this. Open sidebar.php and add this:

<?php /* Widgetized sidebar. */
if ( !function_exists(’dynamic_sidebar’) || !dynamic_sidebar() ) : ?>

// Sidebar content here.

<?php endif; ?>

Thats all there is to it!