Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'Home page' => __( 'If you like travelling around the world-you can write us here! Our company will help you to find the right destination for you', 'text_domain' ),
		'Top 10 destinations-promotions' => __( 'Here you can fins our special promoutions for you!', 'text_domain' ),
		'Location' => __( 'Find us easy- just look the map and find your way', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'custom_navigation_menus' );