Title: belgraded's Replies | WordPress.org

---

# belgraded

  [  ](https://wordpress.org/support/users/belgraded/)

 *   [Profile](https://wordpress.org/support/users/belgraded/)
 *   [Topics Started](https://wordpress.org/support/users/belgraded/topics/)
 *   [Replies Created](https://wordpress.org/support/users/belgraded/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/belgraded/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/belgraded/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/belgraded/engagements/)
 *   [Favorites](https://wordpress.org/support/users/belgraded/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Full and excerpt posts in the blog index](https://wordpress.org/support/topic/full-and-excerpt-posts-in-the-blog-index/)
 *  [belgraded](https://wordpress.org/support/users/belgraded/)
 * (@belgraded)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/full-and-excerpt-posts-in-the-blog-index/#post-712397)
 * hi, i think you need a loop, something like this:
 *     ```
       <?php if (have_posts()) : ?>
       <?php $count = 0; ?>
   
       <?php while (have_posts()) : the_post(); ?>
       <?php $count++; ?>
   
         <?php if ($count < 2) : ?>
       			          <?php the_content() ?>
   
           <?php else : ?>
             <?php if ($count < 11) : ?>
   
                                         <?php the_excerpt(); ?>
   
             <?php endif; ?>
   
         <?php endif; ?>
   
       <?php endwhile; ?>
       <?php endif; ?>
       ```
   
 * hope it helps.

Viewing 1 replies (of 1 total)