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
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.