Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从联系我们、主页和隐私政策页面中排除浮动栏中的 google adsense。浮动插件无法执行此操作。
这将是页面:http ://elraffe.com/contact-us/
我已经尝试了很多事情,但我肯定做错了什么。
非常感谢
使用 WordPress 条件标签is_page。
is_page
<?php if(!is_page('contact-us'){ ?> <!-- Google AdSense Code Here --> <?php } ?>
上面的代码检查您是否不在“联系我们”页面上,然后继续输出 Google AdSense 代码。
参考:
http://codex.wordpress.org/Conditional_Tags