Show Adsense Conditional on Specific Pages?
-
I am trying to get conditional tags to work to show Adsense on specific Pages, and not on others. The approach I use below isn’t working:
<?php if (is_page(181,182,183)) {
echo ‘Adsense code’;
}
else {
echo ‘Affiliate code’;
}
?>I tried this too for multiple page arguments with no success:
<?php if ( is_page(181) || is_page(182) || is_page(183) ) {
echo ‘Adsense code’;
}
else {
echo ‘Affiliate code’;
}
?>any ideas on where I am messing up?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Show Adsense Conditional on Specific Pages?’ is closed to new replies.