You don’t need a plugin for a widgetized top bar, you just need to set it up in your template.
Put this in your theme‘s functions.php file (you may already see part of it there…):
if ( function_exists('register_sidebar') )
register_sidebar(array( 'name' => 'sidebar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
register_sidebar(array( 'name' => 'topbar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
}
and in your header.php or wherever your top horizontal “bar” needs to go:
<?php if ( !function_exists('dynamic_sidebar') ||
!dynamic_sidebar('topbar') ) { ?>
<p>Oops... this displays if the topbar is not set up</p>
<?php } ?>
You should see two choices in the Widgets dropdown, sidebar and topbar. You can use whatever names you like, and add more if you want… bottom bar, floating bar, tiki bar… have fun.