I added code to my sidbar to make a menu show up on my "about" page. Now none of the widgets show up at all. I'm using the Specialist Theme from templatic.com and my website is http://www.chladekwealth.com. What do I need to change in my code?
Here's my code for the sidebar...
`<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar ') ) : else : ?>
<?php
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
<div id="sidebar" class="grid4 fl" >
<?php dynamic_sidebar(6); ?>
</div> <!-- sidebar #end -->`