Publishink
Member
Posted 5 months ago #
I'm stumped trying to figure out how to set up an archive of all posts, regardless of date or category (e.g. the list should not be sectioned), with all posts appearing in reverse date order.
Post title
Date
Excerpt
Post title
Date
Excerpt
...
Any suggestions appreciated.
Publishink
Member
Posted 5 months ago #
I came up with the following line of code, which I inserted before the loop.
<?php query_posts( 'postbypost' ); ?>
scruff
Member
Posted 5 months ago #
i just spent all afternoon on this! i've ended up making a custom page template (identical to archive.php or whatever) that queries all posts using this method: http://stylizedweb.com/2008/08/13/query_posts-pagination-problem/ to solve the resulting pagination problem. hope that helps!