Title: blablu's Replies | WordPress.org

---

# blablu

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to show a post teaser on a template with only one post](https://wordpress.org/support/topic/trouble-showing-more-tagged-excerpts-on-custom-front-page/)
 *  [blablu](https://wordpress.org/support/users/blablu/)
 * (@blablu)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/trouble-showing-more-tagged-excerpts-on-custom-front-page/#post-1068678)
 * Hey. I had the same problem and solved it like this:
 *     ```
       // Get the Posts
       query_posts('showposts=5');
       // Activate Read more...
       global $more;    // Declare global $more (before the loop).
       $more = 0;
       // The Loop
       <?php thematic_navigation_above(); 	?>
       <?php thematic_above_indexloop() ?>
       <?php thematic_indexloop() ?>
       <?php thematic_below_indexloop() ?>
       <?php thematic_navigation_below(); ?>
       ```
   
 * For more information look at [http://codex.wordpress.org/Template_Tags/the_content](http://codex.wordpress.org/Template_Tags/the_content)

Viewing 1 replies (of 1 total)