I'm using the wordpress theme black tec. The dynamic sidebar on the right is not working properly.
I can still add and take away widgets, but the two headings, blogroll, and categories, will not go away no matter how I have my widgets set up. How do I make my sidebar blank so I can customize it with widgets to fit my needs?
sidebar.php
<!-- Sidebar -->
<div class="sidebar">
<h3>Pages</h3>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
<h3>Archives</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
<?php endif; ?>
</div>
<!-- Sidebar -->
functions.php
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'Sidebar Left',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(array(
'name' => 'Sidebar Right',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
?>