最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - How to hide Ads From Certain Categories?

matteradmin8PV0评论

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
Add a comment  | 

1 Answer 1

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/

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far