Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Arts widgets

// Register Sidebars
function boulder_arts_widgets() {

	$args = array(
		'id'            => 'featured-box',
		'class'         => 'frame',
		'name'          => __( 'Front featured quote boc', 'text_domain' ),
		'description'   => __( 'Appears on front page, on the right of the first row of news/blog posts.', 'text_domain' ),
		'before_title'  => '<h2 class="widget-title">',
		'after_title'   => '</h2>',
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'footer-1',
		'name'          => __( 'Footer 1', 'text_domain' ),
		'description'   => __( 'Left footer', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'footer2',
		'name'          => __( 'Footer 2', 'text_domain' ),
		'description'   => __( 'Middle of footer', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'footer3',
		'name'          => __( 'Footer 3', 'text_domain' ),
		'description'   => __( 'Right footer', 'text_domain' ),
	);
	register_sidebar( $args );

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