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/
<?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