Puedes hacer dos loops, uno con la categoría donde estarán las noticias estáticas y el otro donde vayan todas las demás, algo así:
Código PHP:
Ver original<?php query_posts('cat=1&showposts=1'); ?> <!-- Aquí pones el ID de la categoría estática y el numero de post. -->
<?php if (have_posts()): ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Aquí va todo el contenido del loop. -->
<?php endwhile; else: ?>
<?php endif; ?>
<?php query_posts('cat=-1'); ?> <!-- Aquí pones el ID de la categoría estática -->
<?php if (have_posts()): ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Aquí va todo el contenido del loop. -->
<?php endwhile; else: ?>
<?php endif; ?>