Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu

if ( ! function_exists( 'custom_navigation_menus' ) ) {

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'Business Consulting' => __( 'Business Consulting', 'GT' ),
		'Infrastruktur' => __( 'Infrastruktur', 'GT' ),
		'Udvikling' => __( 'Udvikling', 'GT' ),
		'Koncepter' => __( 'Koncepter', 'GT' ),
		'Om Globeteam' => __( 'Om Globeteam', 'GT' ),
	);
	register_nav_menus( $locations );

}

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

}