Title: adding &#039;posts&#039; to a custom theme
Last modified: August 22, 2016

---

# adding 'posts' to a custom theme

 *  [rasta_wdpr](https://wordpress.org/support/users/rasta_wdpr/)
 * (@rasta_wdpr)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/adding-posts-to-a-custom-theme/)
 * i have a custom theme i created from scratch….
 * everything seems to be good so far…
 * now i want to add recent posts to a page. any idea how i can do this?
 * this is the page: [http://rossow-web.com/news/](http://rossow-web.com/news/)

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

 *  [jacobarriola](https://wordpress.org/support/users/jacobarriola/)
 * (@jacobarriola)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/adding-posts-to-a-custom-theme/#post-5469090)
 * A good starting point will be using and interacting with `WP_Query` [http://codex.wordpress.org/Class_Reference/WP_Query](http://codex.wordpress.org/Class_Reference/WP_Query)
 * Hope this helps!
 *  [CMSHelpLive](https://wordpress.org/support/users/cmshelplivecom/)
 * (@cmshelplivecom)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/adding-posts-to-a-custom-theme/#post-5469142)
 * Hi,
 * Just add this code to your page.php page
 * <?php
 *  while ( have_posts() ) : the_post();
 *  get_template_part( ‘content’, ‘page’ );
 *  if ( comments_open() || get_comments_number() ) {
    comments_template(); } endwhile;?
   >
 *  Thread Starter [rasta_wdpr](https://wordpress.org/support/users/rasta_wdpr/)
 * (@rasta_wdpr)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/adding-posts-to-a-custom-theme/#post-5469155)
 * not sure exactly what you mean…. here is a better explanation…
 * these are the files i have in my theme as seen in the appearance editor:
 *  Design_v6 Page Template
    (fineart_page.php)
 *  Footer
    (footer.php)
 *  Theme Functions
    (functions.php)
 *  Header
    (header.php)
 *  Main Index Template
    (index.php) ———————————–
 * i have a page called news — > [http://rossow-web.com/news/](http://rossow-web.com/news/)
 * that i want my posts to appear on….

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

The topic ‘adding 'posts' to a custom theme’ is closed to new replies.

## Tags

 * [custom theme](https://wordpress.org/support/topic-tag/custom-theme/)
 * [posts](https://wordpress.org/support/topic-tag/posts/)

 * 3 replies
 * 3 participants
 * Last reply from: [rasta_wdpr](https://wordpress.org/support/users/rasta_wdpr/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/adding-posts-to-a-custom-theme/#post-5469155)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
