Es ist keine statische Seite, aber mit eigenen Loops. Zwei um genau zu sein.
Bsp. 1. Loop;
<?php $top_query = new WP_Query('cat=1,7,8,15,18,29&showposts=1'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post();
$do_not_duplicate = $post->ID; ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="zum Artikel: <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<small>geschrieben am <?php the_time('l,') ?> <?php the_time('d. F Y') ?> von <?php the_author() ?></small>
<div>
<?php the_content('weiter lesen »'); ?>
</div>
<br class="clear" />
<p class="postmetadata">abgelegt unter: <?php the_category(', ') ?> <strong>|</strong> <?php comments_popup_link('noch keine Kommentare »', '1 Kommentar »', '% Kommentare »'); ?> <?php edit_post_link('Bearbeiten','<strong>|</strong> ',''); ?> <strong>|</strong> <?php the_tags('Schlüsselwort: ', ', ', '<br />'); ?> </p>
<?php endwhile; ?>
Alles anzeigen
und 2. Loop:
<?php $my_query = new WP_Query('offset=1&1,7,8,15,18,29&showposts=4'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="zum Artikel: <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<small>geschrieben am <?php the_time('l,') ?> <?php the_time('d. F Y') ?> von <?php the_author() ?></small>
<div>
<?php the_content('weiter lesen »'); ?>
</div>
<br class="clear" />
<p class="postmetadata">abgelegt unter: <?php the_category(', ') ?> <strong>|</strong> <?php comments_popup_link('noch keine Kommentare »', '1 Kommentar »', '% Kommentare »'); ?> <?php edit_post_link('Bearbeiten','<strong>|</strong> ',''); ?> <strong>|</strong> <?php echo get_the_tag_list('Tags: ', ', ', '<br />'); ?> </p>
<?php endwhile; ?>
Alles anzeigen
Und das mit dem Plugin werde ich heute Abend mal testen...
Vielen Dank schon mal für deine Mühe und Geduld. :)