admin管理员组文章数量:1432156
I'd like to hide our some ads codeblocks from appearing on certain categories/-also category posts- in Wordpress. How to do that?
I would like to post some content to certain category and I want to prevent some ads appearing on those category posts?
I'd like to hide our some ads codeblocks from appearing on certain categories/-also category posts- in Wordpress. How to do that?
I would like to post some content to certain category and I want to prevent some ads appearing on those category posts?
Share Improve this question edited Nov 30, 2016 at 16:50 Gameslopedy Media asked Nov 30, 2016 at 10:33 Gameslopedy MediaGameslopedy Media 12 bronze badges 3 |1 Answer
Reset to default 0<?php if( !is_category(1469) && !in_category(1469) ):?>
AD CODE GOES HERE
<?php endif;?>
Above code worked: It should put endif at the end.
Example: http://gameslopedy/full-game-downloads/test-post/
本文标签: phpHow to hide Ads From Certain Categories
版权声明:本文标题:php - How to hide Ads From Certain Categories? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745591261a2665212.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
<?php if ( !in_category(5) && !in_category(10) ) { ?> Your ad code here <?php } ?>
this code isnt working – Gameslopedy Media Commented Nov 30, 2016 at 15:33