Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Abeng Sidebar

Right block sidebar

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'gutenbar',
		'class'         => 'abeng',
		'name'          => __( 'Abeng sidebar', 'text_domain' ),
		'description'   => __( 'Sidebar for block', 'text_domain' ),
	);
	register_sidebar( $args );

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