Title: How do I create (or format) posts archive?
Last modified: August 31, 2016

---

# How do I create (or format) posts archive?

 *  [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * (@peterdamorg)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/)
 * Hello everyone! First post here.
 * I’m setting up a blog and would like to have a page that lists all my articles
   in a reverse chronological order, just like these two websites: [http://zenhabits.net/archives/](http://zenhabits.net/archives/)
   and [http://markmanson.net/archive](http://markmanson.net/archive)
 * I have a feeling that it should be pretty straightforward to accomplish, but 
   I just don’t know how. I’ve googled, read on forums and I’ve tried different “
   archive” and “calendar” plugins, but none of them allow me to style the list 
   the way I want to.
 * I’ve also considered using my RSS feed as an archive list, but I don’t know how
   to do this. I’ve found a guide at [http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-rss-feeds-in-wordpress/](http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-rss-feeds-in-wordpress/),
   but this is way too advanced for me, and also I don’t know if it’s even possible
   to customize the feed to such an extent that it groups posts by year and month.
 * Do you have any suggestions?
    Thanks in advance! Peter

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

 *  [Johnna Armstrong](https://wordpress.org/support/users/johnna-armstrong/)
 * (@johnna-armstrong)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013434)
 * It looks like the layout you want for the archives page comes built-in with the
   theme that MarkManson.net is using. Here’s another site using the same theme,
   with a similar archives page: [http://davidcarlehq.com/articles/](http://davidcarlehq.com/articles/).
   Why not consider using this theme if you don’t have time for custom coding your
   own archives page right now? The theme is called Ink. [http://demo.codestag.com/?theme=ink](http://demo.codestag.com/?theme=ink)
 *  Thread Starter [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * (@peterdamorg)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013464)
 * Thanks Johnna! Actually I am using that theme, but if that structure comes built-
   in with it, I don’t know how to enable that feature. When I set a page to be 
   my “posts page”, the layout is completely different, it’s like a grid where it
   displays the posts with images.
 *  [Johnna Armstrong](https://wordpress.org/support/users/johnna-armstrong/)
 * (@johnna-armstrong)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013466)
 * Great, you should be able to create a page, set it to the Archives template (
   see dropdown in right column), and it will automatically create a page with your
   post links laid out as in the other websites using the Ink theme. The archives
   template is different than the blog page; that probably has its own layout. But
   you can set your blog to be the archives page in Settings if you want. Or you
   may be able to set your blog page to use the Archives template. Sorry I’m speaking
   in generalities, I haven’t used the theme myself, but newer themes have a lot
   of the same features. If you are still having trouble with the archives page,
   you may want to get in touch with the people who built the theme, maybe they 
   can point you to some specific documentation about it.
 *  Thread Starter [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * (@peterdamorg)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013491)
 * Thanks Johnna, I’ve been reading up on it to understanding it better. At first,
   there was no “Archive” in the template dropdown. I found the archive.php file
   in the theme folder, and after adding “Template name: Archive” in the file as
   a comment, the template now appears in the dropdown menu.
 * However, it doesn’t seem to work. The page doesn’t display any of my posts, only
   the title of the page :-/
 *  [Johnna Armstrong](https://wordpress.org/support/users/johnna-armstrong/)
 * (@johnna-armstrong)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013521)
 * Grrr… There must be something I’m not understanding about how this theme is set
   up; an archives page is usually a magical thing that just happens after you set
   the template. Do you feel comfortable posting a link to your archives page so
   I can take a look at it with a browser inspector? Have you tried getting in touch
   with the folks who made the theme?
 *  [Syed Balkhi](https://wordpress.org/support/users/smub/)
 * (@smub)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013527)
 * Yes there’s an easier way. Thanks for checking out WPBeginner otherwise I would’ve
   never found this question.
 * So there are two ways to do it.
 * #1 is to use a plugin called Display Posts Shortcode
 * [https://wordpress.org/plugins/display-posts-shortcode/](https://wordpress.org/plugins/display-posts-shortcode/)
 * Install that plugin. Then create a page and call it Archives (plural is important)
   so it doesn’t conflict with the “archive” urls.
 * Then paste the shortcode:
 * [display-posts posts_per_page=”1000″ order=”DESC”]
 * You can add other items like add post excerpts / thumbnails but since it’s an
   archive page, you probably shouldn’t considering this page will get pretty big
   after a few years.
 * The only downside here is that it won’t separate by year unfortunately.
 * You can find a full wiki of this plugin: [https://github.com/billerickson/display-posts-shortcode/wiki](https://github.com/billerickson/display-posts-shortcode/wiki)
 * ^^ I have used this plugin and it works great.
 * Method 2: Simple Yearly Archive plugin
 * [https://wordpress.org/plugins/simple-yearly-archive/](https://wordpress.org/plugins/simple-yearly-archive/)
 * Not exactly the look you want because it has the toggle effect.
 * ^^ I never used this plugin but I found it doing a quick search and it seems 
   to have the functionality.
 * Hope you found this helpful.
 * I will do a bit more research and get an article drafted up about this topic.
 *  Thread Starter [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * (@peterdamorg)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013636)
 * Thanks a whole lot for your replies!
 * The Simple Yearly Archive plugin gets fairly close, but I really like the way
   my two examples are displayed – where the name of the month appears once, and
   then the date of that month appears below it. It must be a plugin they’re using,
   because they work the same way, I just don’t know which one. 🙁
 *  [Johnna Armstrong](https://wordpress.org/support/users/johnna-armstrong/)
 * (@johnna-armstrong)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013638)
 * I agree, it’s in the theme you have or an included plugin, there’s just some 
   detail that we’re missing. Have you tried contacting the theme maker?
 *  Thread Starter [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * (@peterdamorg)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013652)
 * I contacted the owner of one of the two websites above (markmanson.net), and 
   he says that his tech-guy coded it for him, and that it’s custom made unfortunately.

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

The topic ‘How do I create (or format) posts archive?’ is closed to new replies.

## Tags

 * [calendar](https://wordpress.org/support/topic-tag/calendar/)
 * [display](https://wordpress.org/support/topic-tag/display/)
 * [list](https://wordpress.org/support/topic-tag/list/)
 * [RSS](https://wordpress.org/support/topic-tag/rss/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 9 replies
 * 3 participants
 * Last reply from: [peterdamorg](https://wordpress.org/support/users/peterdamorg/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-create-or-format-posts-archive/#post-7013652)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
