Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

hits

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'name'          => __( 'Register Sidebar', 'text_domain' ),
		'description'   => __( 'sidebar for the registration page', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'name'          => __( 'Register Individual Event', 'text_domain' ),
		'description'   => __( 'sidebar for the individual event such as Hudson Valley', 'text_domain' ),
	);
	register_sidebar( $args );

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