How To Stop Adsense From A Specific Blog Category??

Discussion in 'WordPress' started by Roseate, Nov 28, 2007.

  1. #1
    Hi,

    Is there a way that I can stop google adsense to appear
    is some posts of a specific category?

    I am using adsense at the top of the posts in the homepage
    and the single posts. I need to remove it not from all single
    posts, but from posts in one of the categories...Is that possible?

    Thanks,
    Roseate
     
    Roseate, Nov 28, 2007 IP
  2. fitforfreedom

    fitforfreedom Peon

    Messages:
    70
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hi there,

    this is simple.

    1. Login to your WordPress and go to "Manage"->"Categories" and look for the ID of the category you do not want to show the ads within.

    2. Edit your "single.php"-file from your themes folder and add this, where the ads should show up:

    <?php 
    if(!in_category('XXX')) { ?>
    (here goes your adsense code)
    <?php } ?>
    
    PHP:
    3. Replace the XXX with the ID of the category.

    That´s it, you´re done.
     
    fitforfreedom, Nov 28, 2007 IP
  3. Roseate

    Roseate Active Member

    Messages:
    220
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #3
    Thanks a lot fitforfreedom, That was easy! :)
     
    Roseate, Nov 28, 2007 IP