I'm trying to craft a page that will display one category's worth of posts, in fwd chronological order. It's close. It displays one page's worth of posts. If I click on the link for later entries, it displays "page 2" but the posts are the same. I believe I understand why -- my query_posts is always going to select the first set of matching posts. Somehow, I need to grab the page # from the URL and pass it in to query_posts. I think. Here is the current query:
<?php query_posts("cat=12" . '&orderby=date&order=ASC'); ?>
Can someone help me?