Title: latest posts in posts
Last modified: August 19, 2016

---

# latest posts in posts

 *  [wildbug](https://wordpress.org/support/users/wildbug/)
 * (@wildbug)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/latest-posts-in-posts/)
 * Is there any way to list latest posts from a single category from within a post(
   not on the post template)?

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

 *  Moderator [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/latest-posts-in-posts/#post-1556634)
 * Did you check: [get_posts](http://codex.wordpress.org/Template_Tags/get_posts)
   
   example:
 *     ```
       <?php
        $postslist = get_posts('numberposts=10&category=1');
        foreach ($postslist as $post) :
           setup_postdata($post);
        ?>
        <div>
        <?php the_date(); ?>
        <br />
        <?php the_title(); ?>
        <?php the_excerpt(); ?>
        </div>
        <?php endforeach; ?>
       ```
   
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/latest-posts-in-posts/#post-1556657)
 * You could use keesiemeijer’s code in a post if you use a plugin such as [Exec-PHP](http://wordpress.org/extend/plugins/exec-php/  ).
 * Or try [http://wordpress.org/extend/plugins/list-category-posts/](http://wordpress.org/extend/plugins/list-category-posts/)
 *  Moderator [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/latest-posts-in-posts/#post-1556659)
 * I went to fast and read over the “(not on the post template)” bit. Try MichaelH
   solution.

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

The topic ‘latest posts in posts’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 3 participants
 * Last reply from: [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * Last activity: [15 years, 11 months ago](https://wordpress.org/support/topic/latest-posts-in-posts/#post-1556659)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
