Skip to content

Instantly share code, notes, and snippets.

@mdawaffe
Created December 13, 2012 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdawaffe/4273896 to your computer and use it in GitHub Desktop.
Save mdawaffe/4273896 to your computer and use it in GitHub Desktop.
Easy AdSense Lite and Jetpack: Don't show ads (or increment the ezCount) unless we're in the loop.
Index: easy-adsense-lite.php
===================================================================
--- easy-adsense-lite.php (revision 638198)
+++ easy-adsense-lite.php (working copy)
@@ -402,6 +402,7 @@
}
function ezAdSense_content($content) {
+ if (!in_the_loop()) return $content ;
if (!$this->options['allow_feeds'] && is_feed()) return $content ;
if ($this->options['kill_pages'] && is_page()) return $content ;
if ($this->options['kill_attach'] && is_attachment()) return $content ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment