how to avoid duplicate posts on front page? i have 1 category 'news' for all posts and some categories like 'vegetables' and 'fruits'. Each post is in 'news' and particular category.
At the top of page i have recent 3 'news' posts and in other places i want to press fe.3 recent posts for 'fruits' category, but to not duplicate 3 recent 'news' posts. i've tried with sth like that:
query_posts( 'posts_per_page=3&category_name=fuits' ) && query_posts('posts_per_page=3&category_name=news&offset=3' );
Can anyone help me?