Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu phplux

if ( ! function_exists( 'phplux_navigation_menu' ) ) {

// Register Navigation Menus
function phplux_navigation_menu() {

	$locations = array(
		'header' => __( 'Menú del Header', 'phplux' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'phplux_navigation_menu' );

}