Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

side test

side test

if ( ! function_exists( 'custom_sidebars' ) ) {

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => '1',
		'name'          => __( 'test01', 'text_domain' ),
	);
	register_sidebar( $args );

}
add_action( 'widgets_init', 'custom_sidebars' );

}