test
// Register Sidebars
function custom_sidebars() {
$args = array(
'id' => '1',
'name' => __( 'Uvod', 'text_domain' ),
);
register_sidebar( $args );
$args = array(
'id' => 'ľ',
'name' => __( 'test', 'text_domain' ),
'description' => __( 'test', 'text_domain' ),
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'custom_sidebars' );