understrap_kornye
if ( ! function_exists( 'kornye_custom_sidebars' ) ) {
// Register Sidebars
function kornye_custom_sidebars() {
$args = array(
'id' => 'sidebar-index-first',
'class' => 'sidebar-index-first',
'name' => __( 'Sidebar index first', 'understrap' ),
'description' => __( 'Index sidebar primary widget area', 'understrap' ),
);
register_sidebar( $args );
$args = array(
'id' => 'sidebar-index-second',
'class' => 'sidebar-index-first',
'name' => __( 'Sidebar index second', 'understrap' ),
'description' => __( 'Index sidebar secondary widget area', 'understrap' ),
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'kornye_custom_sidebars' );
}