Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Ip2country

Descripción

Get country code or country name:

<?php
$ip2country = ip2country();
echo ' Country code: '.$ip2country->country_code;
echo ' Country name: '.$ip2country->country_name;
// or
$ip2country2 = ip2country('212.113.46.148');
echo ' Country code: '.$ip2country2->country_code;
echo ' Country name: '.$ip2country2->country_name;
?>

Get additional info about the country by country code:

<?php
$ip2country_info = ip2country_info($ip2country->country_code);
echo ' iso_code_2: '.$ip2country_info->iso_code_2;
echo ' iso_code_3: '.$ip2country_info->iso_code_3;
echo ' iso_country: '.$ip2country_info->iso_country;
echo ' country: '.$ip2country_info->country;
echo ' lat: '.$ip2country_info->lat;
echo ' lon: '.$ip2country_info->lon;
// or
$ip2country_info = ip2country_info('us');
echo ' lat: '.$ip2country_info->lat;
echo ' lon: '.$ip2country_info->lon;
?>

Ip2country support page

Useful:

Capturas

  • Ip2country table
  • Ip2country_info table

Instalación

  1. install and activate the plugin on the Plugins page
  2. insert ip2country dump into your database using phpMyAdmin (if your database prefix is not «wp_», you should change prefix inside the sql database dump manually)
  3. you can use plugin functions to convert the IP-address to the country

Reseñas

No hay valoraciones para este plugin.

Colaboradores y desarrolladores

«Ip2country» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce «Ip2country» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.3

  • minor changes

1.2

  • IP database update;

1.1.0

  • Added info table from http://www.ip2nation.com/;

1.0.0

  • Initial release;