Title: Adsense between posts
Last modified: August 19, 2016

---

# Adsense between posts

 *  [giankar](https://wordpress.org/support/users/giankar/)
 * (@giankar)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/adsense-between-posts/)
 * I would like to add adsense ads on my wordpress homepage, between 5th and 6th
   post, how can I do it?

Viewing 1 replies (of 1 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/adsense-between-posts/#post-1526287)
 * 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.

 * 1 reply
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [15 years, 10 months ago](https://wordpress.org/support/topic/adsense-between-posts/#post-1526287)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
