Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shoper_sidebars

if ( ! function_exists( 'shoper_sidebars' ) ) {

// Register Sidebars
function shoper_sidebars() {

	$args = array(
		'id'            => 'sidebar',
		'class'         => 'sidebar',
		'name'          => __( 'sidebar', 'shoper' ),
		'description'   => __( 'sidebar', 'shoper' ),
		'before_title'  => '<h2>',
		'after_title'   => '</h2>',
	);
	register_sidebar( $args );

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

}