• I’m using a theme that puts my newest post at the top of the page on it’s own, and then lists all the rest;
    <?php query_posts("showposts=1&cat=$category")?>

    I want this list to skip the newest post and go straight onto the second one. Is that possible?

Viewing 1 replies (of 1 total)
  • yes

    <?php query_posts("showposts=1&cat=$category&offset=1")?>

    offset 1 means skip the 1st post, start with 2nd

Viewing 1 replies (of 1 total)
  • The topic ‘query_posts:start from the second oldest post?’ is closed to new replies.