Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu footer

if ( ! function_exists( 'javi_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function javi_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion_footer' => __( 'menufooter', 'javi_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}