PHP
<?php $top_query = new WP_Query('cat=7&showposts=2'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); ?>
your stuff
<?php endwhile; ?>
naechsten 3 aus der kat ID3
PHP
<?php $top_query = new WP_Query('cat=7&showposts=3&offset=3'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); ?>
your stuff
<?php endwhile; ?>
PHP
<?php $top_query = new WP_Query('cat=10&showposts=5'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); ?>
your stuff
<?php endwhile; ?>
alle anderen Beiträge aus der Kat 10
PHP
<?php $top_query = new WP_Query('cat=10&showposts=400&offset=5'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); ?>
your stuff
<?php endwhile; ?>
logisch wirst Du nie 500 Beiträge anzeigen lassen wollen, aber auch vermutlich keine 500 in einer Kat haben ;) so funktionierts bei mir gut
quick und wirklich dirty
lg