Ok, I want to show only one newest post on my first page, which is easy, but here's the trick.
I want to show the newest post from all categories except 1 (ID=1).
I thought that with query_posts this would be piece of cake, but it's not.. Here's what I use:
<?php query_posts = ('showposts=1&cat=-1'); ?>
This brings only one post, not including the cat number 1, but the post is THE OLDEST ONE, not the newest one...
How can I order those posts in DESC order by date?