Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu Snippets

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'Top Bar Left' => __( 'Top Bar Left', 'text_domain' ),
		'Top Bar Right' => __( 'Top Bar Right', 'text_domain' ),
		'Main Menue' => __( 'Main menu', 'text_domain' ),
		'Footer Menu 1' => __( 'Footer Menu 1', 'text_domain' ),
		'Footer Menu 2' => __( 'Footer Menu 2', 'text_domain' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'custom_navigation_menus' );