Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Travel to Kochi

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'Travel By Air' => __( 'How to reach Kochi by Air', 'text_domain' ),
		'Flight Timings' => __( 'Flight Timings to Kochi', 'text_domain' ),
		'To Crowne Plaza' => __( 'How to reach Crowne Plaza From Airport (Cochin International Airport (COK))', 'text_domain' ),
		'Travel by Train' => __( '', 'text_domain' ),
		'Trains - Kochi To / From Bangalore ' => __( '', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

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