Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Connectivity Sidebar

if ( ! function_exists( 'custom_connectivity_sidebar' ) ) {

// Register Sidebars
function custom_connectivity_sidebar() {

	$args = array(
		'id'            => 'connectivity_sidebar',
		'class'         => 'connectivity-sidebar',
		'name'          => __( 'Connectivity Sidebar', 'mnxonline' ),
		'description'   => __( 'Sidebar to filter connectivities', 'mnxonline' ),
	);
	register_sidebar( $args );

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

}