Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

SB

New

if ( ! function_exists( 'custom_sidebars' ) ) {

// Register Sidebars
function custom_sidebars() {

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

	$args = array(
		'id'            => '2',
		'name'          => __( 'footer', 'text_domain' ),
		'description'   => __( 'for footer only', 'text_domain' ),
	);
	register_sidebar( $args );

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

}