Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Crear menú footer

if ( ! function_exists( 'boluda_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function boluda_ubicacion_menu_footer() {

	$locations = array(
		'ubicacion_footer' => __( 'Footer', 'boluda_ubicacion_menu_footer' ),
	);
	register_nav_menus( $locations );

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

}