Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test menu

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'test1' => __( 'Test 1', 'text_domain' ),
		'test2' => __( 'Test 2', 'text_domain' ),
		'test3' => __( 'Test 3', 'text_domain' ),
		'test4' => __( 'Test 4', 'text_domain' ),
		'test5' => __( 'Test 5', 'text_domain' ),
	);
	register_nav_menus( $locations );

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