I understand the below function for Wordpress widgets below,
register_sidebar(array(
'name' => 'sidebar',
'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="widgetTop"></div>',
'after_widget' => '</div>',
'before_title' => '<h2 class="accordion_toggle">',
'after_title' => '</h2>',
));
as 'before_title' and 'after_title' are my H2 titles of the widget, and the 'before_widget' and 'after_widget' encases the widget itself. But what if I need to put a class inside the widget, instead of outside? I want all content inside the widget to have a certain class. What would the correct syntax be for this? 'inside_widget'?