Tried changing the quotes, still doesnt work. Here the code:
$args = array(
'name' => __( 'Sidebar acudame', 'acudame.org' ),
'id' => 'unique-sidebar-id',
'description' => '',
'class' => '',
'before_widget' => '<div class="sidebox">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widget %2$s">',
'after_title' => '</h3>' );
register_sidebar( $args );
I’m trying to have my widgets to have it’s own separate class (using the example above) but instead of getting a different class for each (ex: widget-1, widget-2, etc…) I get <div class='widget- %2$s'
What am I doing wrong?
Thanks.