Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ink_ubicacion_menu_footer

Este snippet crea un código para mostrar un menu en el footer

if ( ! function_exists( 'ink_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function ink_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion-footer' => __( 'Footer', 'ink_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}