Viewing 1 replies (of 1 total)
  • one possible way is to add a counter to the loop (in index.php):

    <?php
    if (have_posts()) :
    
    $i=1; // counter
    
       while (have_posts()) : the_post();
    
          /* the_title(); the_content(); etc. ;*/
    
    if($i==5) { echo 'your adsense code here'; }
    $i++; // increase counter
    
       endwhile;
    endif;
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Adsense between posts’ is closed to new replies.