MetalMan390
Regular Member
- Sep 26, 2009
- 285
- 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.
<?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++; ?>