Skip to content

Instantly share code, notes, and snippets.

@webgurus
Created August 14, 2015 12:18
Show Gist options
  • Save webgurus/ab3e8adcea5e143e0c75 to your computer and use it in GitHub Desktop.
Save webgurus/ab3e8adcea5e143e0c75 to your computer and use it in GitHub Desktop.
<?php
$geo = Wpengine\Geoip::instance();
if($geo->country()=='RO') {
$country = 'Romania';
} elseif($geo->country()=='UK') {
$country = 'United Kingdom';
} elseif($geo->country()=='US') {
$country = 'United States';
}
?>
<article class="post">
<p>This content is visible only for <strong><?=$country?></strong>. <br /><small>How’s the weather in <?=$geo->city()?>, <?=$geo->country()?>, <?=$geo->continent()?>?</small></p>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment