Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Ubicacion-footer

if ( ! function_exists( 'acr_ubicacion_menu_footer' ) ) {

// Register Navigation Menus
function acr_ubicacion_menu_footer() {

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

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

}