Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sidebar2

// Register Sidebar
function () {

	$args = array(
		'id'            => 'sidebar',
		'name'          => __( 'sidebar', 'text_domain' ),
		'description'   => __( 'sidebar', 'text_domain' ),
		'class'         => 'sidebar',
	);
	register_sidebar( $args );

}

// Hook into the 'widgets_init' action
add_action( 'widgets_init', '' );