Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Prueba1

if ( ! function_exists( 'prueba1' ) ) {

// Register Navigation Menus
function prueba1() {

	$locations = array(
		'Clientes' => __( 'Seccion privada menú clientes', 'text_domain' ),
		'Proveedores' => __( 'Sección privada proveedores', 'text_domain' ),
	);
	register_nav_menus( $locations );

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

}