Where should a plugin ideally hook to call register_sidebar();?
Will init do just fine?
function my_plugin_register_sidebars() {
$args = array(
'name' => 'foo'
'description' => 'bar'
...
);
register_sidebar( $args );
}
add_action( '**????**', 'my_plugin_register_sidebar' );

