Can you be more specific? Here's how to make your theme widget ready:
functions.php
if ( function_exists('register_sidebar') )
if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'Left Sidebar',
'description' => 'These widgets will appear in the left sidebar.',
'before_widget' => '<div class="widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
Then put this wherever your sidebar will appear:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Name Here') ) : ?>
<?php endif; ?>
Jared source
share