Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom Sidebar

Custom Sidebar.

// Register Sidebar
function anva_custom_sidebar() {

	$args = array(
		'id'            => 'custom_sidebar',
		'name'          => __( 'Custom Sidebar', 'anva' ),
		'description'   => __( 'Custom Sidebar.', 'anva' ),
		'class'         => 'custom-sidebar',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="widget-inner">">',
		'after_widget'  => '</div></div>',
	);
	register_sidebar( $args );

}

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