if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'Custom Sidebar',
'id' => 'custom-sidebar',
'description' => 'Sidebar below Header image',
'before_widget' => '<li id="%1$s">',
'after_widget' => '</li>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
}
<?php get_sidebar(); ?>
<?php //get_sidebar(); ?>
<div id="custom-sidebar">
<ul>
<?php
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('custom-sidebar') ) :
endif; ?>
</ul>
<div style="clear:both"></div>
</div>