Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sidebars 1

if ( ! function_exists( 'sqpp_sidebars_1' ) ) {

// Register Sidebars
function sqpp_sidebars_1() {

	$args = array(
		'id'            => 'searchwidgetsearch',
		'class'         => 'searchwidgetsearch',
		'name'          => __( 'Search', 'sqppsidebars' ),
		'description'   => __( 'Add this sidebar aka widget area anywhere with the shortcode [searchwidget]', 'sqppsidebars' ),
		'before_title'  => '<h4 class="widget-title widgettitle">',
		'after_title'   => '</h4>',
		'before_widget' => '<div id="%1$s" class="sqpp-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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

}