admin管理员组文章数量:1023213
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/
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 follow this link jeetblog/… – GKS Commented Nov 30, 2016 at 10:44
- Depending on your theme, available plugins and so on there are different approaches. So you'll have to be more specific about your setup. As it is now, your question is too broad to answer. – cjbj Commented Nov 30, 2016 at 12:35
-
<?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
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://it.en369.cn/questions/1745591259a2157901.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