Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

two sidebars

add two sidebars

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'patreon-cta',
		'class'         => 'the-bars',
		'name'          => __( 'Patreon CTA', 'text_domain' ),
		'description'   => __( 'Join my Patreon', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'the-archives',
		'class'         => 'the-bars',
		'name'          => __( 'The Archives', 'text_domain' ),
		'description'   => __( 'Archive sidebar', 'text_domain' ),
	);
	register_sidebar( $args );

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