Title: Adding image banner at specific position
Last modified: August 21, 2016

---

# Adding image banner at specific position

 *  [kitng225](https://wordpress.org/support/users/kitng225/)
 * (@kitng225)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/adding-image-banner-at-specific-position/)
 * I want to add a image banner at the home page, which they will appear under the
   5th, 10th, 15th….. post.
 * May I know how can I achieve this? Is that I have to doing some php looping functions?
 * Any sample codes are greatly appreciated~ thanks 🙂

Viewing 1 replies (of 1 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/adding-image-banner-at-specific-position/#post-4350341)
 * what theme are you using?
 * generally, you could try to add an action to the `'the_post'` hook;
 * concept (untested; code to be added to functions.php of your theme):
 *     ```
       add_action( 'the_post', 'custom_banner_function' );
       function custom_banner_function() {
         global $wp_query;
         if( $wp_query->current_post && $wp_query->current_post%5 == 0 ) {
            //whatever code is needed to output the banner(s)//
         }
       }
       ```
   
 * [http://codex.wordpress.org/Function_Reference/add_action](http://codex.wordpress.org/Function_Reference/add_action)

Viewing 1 replies (of 1 total)

The topic ‘Adding image banner at specific position’ is closed to new replies.

## Tags

 * [ads](https://wordpress.org/support/topic-tag/ads/)
 * [banner](https://wordpress.org/support/topic-tag/banner/)
 * [post](https://wordpress.org/support/topic-tag/post/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/adding-image-banner-at-specific-position/#post-4350341)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
