Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menus for desktop, tablet and mobile

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'desktop_menu' => __( 'Desktop Menu', 'text_domain' ),
		'tablet_menu' => __( 'Tablet Menu', 'text_domain' ),
		'mobile_menu' => __( 'Menu Menu', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

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