문제

I would like to exclude google adsense which is in a floating bar from the contact us,home and privacy policy pages.The floating plugin has no option to do this.

This would be the page: http://elraffe.com/contact-us/

I tried many things already,but i am doing something wrong for sure.

Thank you very much

도움이 되었습니까?

해결책

Use the WordPress Conditional Tag is_page.

<?php if(!is_page('contact-us'){ ?>
<!-- Google AdSense Code Here -->
<?php } ?>

The above code checks if you are not on the Contact Us page, then proceeds to output the Google AdSense code.

Reference:

http://codex.wordpress.org/Conditional_Tags

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top