Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Left and Right Sidebar

if ( ! function_exists( 'codespace_widgets_init' ) ) {

// Register Sidebars
function codespace_widgets_init() {

	$args = array(
		'id'            => 'sidebar-right',
		'name'          => __( 'Right Sidebar', 'codespace' ),
		'description'   => __( 'Add widgets here.', 'codespace' ),
		'before_title'  => '<h2 class="widget-title">',
		'after_title'   => '</h2>',
		'before_widget' => '<section id="%1$s" class="widget %2$s">',
		'after_widget'  => '</section>',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'sidebar-left',
		'name'          => __( 'Left Sidebar', 'codespace' ),
		'description'   => __( 'Add widgets here.', 'codespace' ),
		'before_title'  => '<h2 class="widget-title">',
		'after_title'   => '</h2>',
		'before_widget' => '<section id="%1$s" class="widget %2$s">',
		'after_widget'  => '</section>',
	);
	register_sidebar( $args );

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

}