I want to use the query_posts() function to limit the posts to all but the most recent on one of my templates. This is because the most recent post is a featured item alone on it's own page where as the rest of the posts are to be on another page. It was easy enough to display the most recent one on one of my templates:
<?php query_posts(array('category_name' => 'Recipe of the Week', 'posts_per_page' => 1)); ?>
So basically I'd like something like that but to limit it to all but the first post.
Thanks, John.
