>
Download This Plugin | |
Download Elegant Themes | |
Name | Ip2country |
Version | 1.3 |
Author | webvitaly |
Rating | 0 |
Last updated | 2012-11-07 10:42:00 |
Downloads |
2236
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Ip2country plugin added 4 bytes of resources to the Home page and 6 bytes of resources to the sample Post page.
Ip2country plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Ip2country plugin ads no tables to your Wordpress blog database.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;
?>