Hello,
I'd like to ask for your help in customizing finestripes theme (from themes section) which I really like and would like to continue using it. WordPress tells me it is not widget-aware theme.
Here's the theme source. How do I make it widget-ready?
<div id="right">
<div id="sidebar">
<ul>
<li><h2><?php _e('Pages'); ?></h2>
<ul>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
</li>
<li><h2><?php _e('Categories'); ?></h2>
<ul>
<?php list_cats() ?>
</ul>
</li>
<li><h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li><h2><?php _e('Links'); ?></h2>
<ul>
<?php get_links('-1', '<li>', '</li>', ' ', TRUE, 'url', FALSE); ?>
</ul>
</li>
<li><h2>Search</h2>
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<input type="text" name="s" id="search" size="15" maxlength="20"/><input type="submit" name="submit" id="searchbut" value="Go" />
</form>
</li>
<?php /* If this is the frontpage */ if (is_home()) { ?>
<li><h2><?php _e('Meta'); ?></h2>
<ul>
<li><?php wp_loginout(); ?></li>
<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WordPress</abbr></a></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS Feed</abbr>'); ?></a></li>
<li><?php wp_meta(); ?></li>
</ul>
</li>
<?php } ?>
</ul>
</div><!-- Closes the sidebar div-->
</div><!-- Closes the rightcolumn div-->
Many thanks in advance!
zbigniew szalbot