Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

new offers

have fun

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'Idea' => __( 'new offers', 'text_domain' ),
		'airtel' => __( '2015', 'text_domain' ),
		'Vodafone' => __( 'new tricks', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

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