Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

PickATrip Sidebar

// Register Sidebars
function pickatrip_sidebars() {

	$args = array(
		'id'            => 'sidebar-1',
		'name'          => __( 'Sidebar 1', 'pickatrip' ),
		'before_title'  => '<div class="panel-heading"><h1 class="panel-title">',
		'after_title'   => '</h1></div>',
		'before_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget'  => '</li>',
	);
	register_sidebar( $args );

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