Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sta_menu_footer

if ( ! function_exists( 'ubicacion_menu_footer_01' ) ) {

// Register Navigation Menus
function ubicacion_menu_footer_01() {

	$locations = array(
		'ubicacion-footer-01' => __( 'Menú Ubicación Footer 01', 'ubicacion_menu_footer_01' ),
	);
	register_nav_menus( $locations );

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

}