I'd like to ask for your help in customizing the Biru 2.0 theme, which I really like and would like to use. I've tried what's in the tutorials, but WordPress still tells me it is not widget-aware.
Here's the sidebar.php source code:
<!-- Hi, kiri-1 is left and kanan-1 is right-->
<div id="kiri-1" >
<!--top commentators-->
<h3 class="hdr6"><span class="hidden">Top Commentators</span></h3>
<ul class="comments">
<?php //ns_show_top_commentators(); ?>
</ul>
<!--recent comments-->
<h3 class="hdr3"><span class="hidden">RECENTCOMMENTS</span></h3>
<ul class="comments">
<?php if (function_exists('mdv_recent_comments')) { mdv_recent_comments(10, 10, '<li>', '</li>', true, 0); } ?>
</ul>
<!--most commented posts-->
<h3 class="hdr4"><span class="hidden">MOST COMMENTS</span></h3>
<ul class="comments">
<?php if (function_exists('mdv_most_commented')) { mdv_most_commented(10); } ?>
</ul>
<!--Monthly Archives-->
<h3 class="hdr9"><span class="hidden">Archives</span></h3>
<ul class="comments">
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div id="kanan-1">
<!--RSS Feed-->
<ul class="comments" >
<p style="text-align: center"><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/rss.png" style="border: 0pt none " /></a></p>
<p align="center"><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>">I love your blog and I want to subscribe it via RSS Reader!</a></p>
</ul>
<!--your sponsor-->
<h3 class="hdr7"><span class="hidden">My Sponsor</span></h3>
<ul class="comments">
<!--put your sponsors code here-->
</ul>
<!--Category archives-->
<h3 class="hdr2"><span class="hidden">MY Categories</span></h3>
<ul class="comments">
<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','11,14,15,16,17') ?>
</ul>
<!--10 Random Links-->
<h3 class="hdr5"><span class="hidden">LINK LOVE</span></h3>
<ul class="comments">
<?php get_links('-1', '<li>', '</li>', '', FALSE, 'rand', FALSE, FALSE, 10, TRUE); ?>
</ul>
</div>
Can someone please help me out??