WP - How to display adsense overy other post in ONE specific category?

MetalMan390

Regular Member
Joined
Sep 26, 2009
Messages
285
Reaction score
18
Using wordpress, (wp-clear theme), how do I display adsense after every other post, but only in one specific category? I don't know php at all and could use a "dumbed down" answer.
 
You can try adding this script to your wordpress index page, replace category_name with category you want to use this code for

PHP:
<?php $count = 1; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
.................................

<?php if (($count & 1) && (the_category(', ') == 'CATEGORY_NAME')) : ?>
ADSENSE_CODE HERE
<?php endif; $count++; ?>
 
Back
Top