ADS AFTER X POSTS
-
i would like to put ads after 10 posts.
the code:<?php $counter =0; ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); $count++; ?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php the_title(); ?>
<?php the_excerpt(); ?>
</div>
<?php $postnum++; if($postnum == 10) { ?>
<div>AD CODE HERE</div>
<?php } ?>
<?php endwhile; ?>
<?php wp_pagination(); ?>
<?php else : ?>
<?php get_template_part( ‘no-results’, ‘index’ ); ?>
<?php endif; ?>it dosent work…can someone halp me please? ??
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘ADS AFTER X POSTS’ is closed to new replies.