Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

menu de prueba

if ( ! function_exists( 'Menu_de_prueba' ) ) {

// Register Navigation Menus
function Menu_de_prueba() {

	$locations = array(
		'menu 1' => __( '', 'text_domain' ),
		'menu 2' => __( '', 'text_domain' ),
		'menu 3' => __( '', 'text_domain' ),
	);
	register_nav_menus( $locations );

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

}