tags:

views:

23

answers:

1

So, I have some subcategories, and in each category I insert some posts, when I show the posts for each subcategory I don't want to show the FIRST inserted post in that subcategory, only the posts that are not the FIRST ONE.How can I do this with query_posts..or how?

Best Regards

//SOLVED I will use a custom field

A: 

See offset parameter in function reference

query_posts('posts_per_page=5&offset=1');

ivan73