Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Testmeny

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'M1' => __( 'm1 desc', 'text_domain' ),
		'M2' => __( 'M2 desc', 'text_domain' ),
		'M3' => __( 'M3 desc', 'text_domain' ),
		'M4' => __( 'M4 desc', 'text_domain' ),
		'M5' => __( 'M5 desc', 'text_domain' ),
	);
	register_nav_menus( $locations );

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