Archive link to show all posts?
-
This seems like the most basic concept in WordPress and I can’t figure it out.
How do I link to an archive page that shows every single post on the blog in chronological order? I know how to link to the archives page to show all posts by author (<?php the_author_posts_link(); ?>), by date (<?php the_time(‘F j, Y’); ?>), by category (<?php $category = get_the_category(); $category_id = $category[$i]->cat_ID; echo get_category_link($category_id);?>), and so on. I cannot figure out how to link to it to simply show every post that exists in the blog, not sorted by author, date, or anything else. Just every post there is, in chronological order?
Can anyone explain how to link to this page? Thanks.
- The topic ‘Archive link to show all posts?’ is closed to new replies.