http://www.texto.de/texto/kategori…nnen-get-posts/
das wäre so ein Ansatz
PHP
<?php
$posts = get_posts('category=2&numberposts=1);
foreach($posts as $post) :
setup_postdata($post);
?>
<!--deine Gestaltung hier der Titel und der Auszug-->
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('j. F Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_excerpt() ?>
</div>
<!--wichtiges ende nicht loeschen-->
<?php endforeach; ?>
<?php
$posts = get_posts('category=2&numberposts=5&offset=1');
foreach($posts as $post) :
setup_postdata($post);
?>
<!--deine Gestaltung hier der Titel und der Auszug-->
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('j. F Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_excerpt() ?>
</div>
<!--wichtiges ende nicht loeschen-->
<?php endforeach; ?>
Alles anzeigen
lg