Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function get_adsense() {
- $ad = 'no ad';
- include_once '/home/username/geoip.inc';
- $gi = geoip_open('/home/username/GeoIP.dat', GEOIP_MEMORY_CACHE);
- $country = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
- if(!in_array($country, array('IN', 'CN'))) {
- $ad = '
- <script type="text/javascript"><!--
- google_ad_client = "ca-pub-xxx";
- /* WDB - 468x60 */
- google_ad_slot = "5036714934";
- google_ad_width = 468;
- google_ad_height = 60;
- //-->
- </script>
- <script type="text/javascript"
- src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
- </script>';
- }
- return $ad;
- }
- function createAdsense468by60() {
- ?>
- <!--mfunc return get_adsense() -->
- <?php return get_adsense(); ?>
- <!--/mfunc-->
- <?php
- }
- add_shortcode('adsense46860', 'createAdsense468by60');
Advertisement
Add Comment
Please, Sign In to add comment