I'm trying to make a custom posts in my WordPress theme, however I have a problem. I want to get seven Posts on the main page, my index. But the first post I'll stylise differently from the other six. I am repeating the query_posts (). At first I put it like this:
I'm using this to get the first post.
query_posts ('posts_per_page = 1')
if (have_posts ()): while (have_posts ()): the_post ();
And for the others I'm repeating the code with a different parameter.
query_posts ('posts_per_page = 5')
if (have_posts ()): while (have_posts ()): the_post ();
The problem is that the first post is being repeated in both blocks. I wanted to know if you have any parameters that I can use in the second block to make a "jump" start picking up the posts from 2.