Exclude AdSense on attachment page for a given set of IDs?
-
Hello there,
I am using WordPress attachment pages for my full image link views.
Currently I have implemented Google AdSense by adding the code in attachment.php so it displays on all attachment pages.
I would now like to exclude AdSense from displaying from some of the attachment pages. So perhaps an array of attachment IDs that I manually input in the template?
Looking at the WP functions it looks like I should use function is_attachment ?
Would something like this be the right approach?
<?php $galleryExclusions = array(10000,10001,100002,20422); if (!is_attachment($galleryExclusions) ) { // Adsense Code here } ?>
Any help would greatly be appreciated, thank you!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Exclude AdSense on attachment page for a given set of IDs?’ is closed to new replies.