Skip to content

Instantly share code, notes, and snippets.

@abarza
Created May 12, 2015 16:41
Show Gist options
  • Save abarza/caaccc0a1746c7112cb6 to your computer and use it in GitHub Desktop.
Save abarza/caaccc0a1746c7112cb6 to your computer and use it in GitHub Desktop.
Contact form 7 & Freegeoip IP Country localization
if ( '_remote_ip' == $name ) {
if ( $remote_ip = $submission->get_meta( 'remote_ip' ) ) {
$pageContent = file_get_contents('http://freegeoip.net/json/' . $remote_ip);
$parsedJson = json_decode($pageContent);
return htmlspecialchars($parsedJson->country_name);
} else {
return '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment