Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Header Right Menu

if ( ! function_exists( 'csl_header_menu_right' ) ) {

// Register Sidebars
function csl_header_menu_right() {

	$args = array(
		'id'            => 'header_menu_right',
		'class'         => 'header-menu-right',
		'name'          => __( 'Header Menu Right', 'csl' ),
		'description'   => __( 'Appears to the right of the main menu', 'csl' ),
	);
	register_sidebar( $args );

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

}