Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

pruebas2

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'footer' => __( 'Menú pie de página', 'text_domain' ),
		'products_1' => __( 'Menú de productos 1', 'text_domain' ),
		'products_2' => __( 'Menú de productos 2', 'text_domain' ),
		'legal' => __( 'Menú legal', 'text_domain' ),
		'social' => __( 'Menú Social', 'text_domain' ),
	);
	register_nav_menus( $locations );

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