Title: Latest posts under normal page
Last modified: August 19, 2016

---

# Latest posts under normal page

 *  [stevestevechengcom](https://wordpress.org/support/users/stevestevechengcom/)
 * (@stevestevechengcom)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/)
 * Hi,
 * I’m quite new to WP so apologies if this question is fundamental.
 * I’m working on an existing WP site which uses the Thesis theme and Tubepress 
   plugin. I needed to create a homeage which displays a featured banner (Thesis
   feature), a grid of videos and a list of the latest posts on the site.
 * I’ve so far managed to create everything by adding a new page and inserting the
   tubpress code within that page, however the list of the latest posts eludes me.
   Can somebody point me in the right direction? I’m not even sure I’ve taken the
   correct approach so am happy for critical feedback. Also, if I need to modify
   code, that’s not a problem either.
 * Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/#post-1780148)
 * [http://codex.wordpress.org/Function_Reference/query_posts](http://codex.wordpress.org/Function_Reference/query_posts)
 *  Thread Starter [stevestevechengcom](https://wordpress.org/support/users/stevestevechengcom/)
 * (@stevestevechengcom)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/#post-1780158)
 * Thanks Esmi, I’ve added some custom code to list the latest five posts as follows:
 *     ```
       query_posts('posts_per_page=5');
   
         global $more;
         $more = 0; 
   
         while (have_posts()) : the_post();
           the_content('Read the full post »');
         endwhile;
       ```
   
 * It works great but what I’m finding is the title of the post isn’t being displayed.
   I tried using the_title() within h2 tags but it’s being displayed outside of 
   the tag for some reason.
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/#post-1780364)
 * You should be able to use `<h2><?php the_title();?></h2>` immediately before `
   the_content('Read the full post »');`
 *  Thread Starter [stevestevechengcom](https://wordpress.org/support/users/stevestevechengcom/)
 * (@stevestevechengcom)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/#post-1780367)
 * I tried that, doesn’t work.
 * I figured it out by doing the_title(‘<h2>’,'</h2>’,1);
 * [http://codex.wordpress.org/Function_Reference/the_title](http://codex.wordpress.org/Function_Reference/the_title)

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Latest posts under normal page’ is closed to new replies.

## Tags

 * [homepage](https://wordpress.org/support/topic-tag/homepage/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 4 replies
 * 2 participants
 * Last reply from: [stevestevechengcom](https://wordpress.org/support/users/stevestevechengcom/)
 * Last activity: [15 years, 6 months ago](https://wordpress.org/support/topic/latest-posts-under-normal-page/#post-1780367)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
