So wie bei mir? SCHLOEBE.DE - Personal Portfolio von Oliver Schlöbe -
Folgender Code kommt dabei zum Einsatz (entschlackt und an Spiegel etwas angepasst)):
PHP
<?php $top_query = new WP_Query('showposts=1'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="article" id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a></h1>
<br />
<?php the_content('(Mehr...)'); ?>
<div class="feedback">
<?php wp_link_pages(); ?>
<span class="link-categorie"><?php the_category(', ') ?></span> <?php comments_popup_link(__('Schreib was...'), __('1 Kommentar'), __('% Kommentare'), 'link-comentariu', __('Kommentare deaktiviert')); ?>
</div>
</div>
<?php endwhile; ?>
<ul>
<?php $top_query2 = new WP_Query('showposts=100&offset=1'); ?>
<?php while($top_query2->have_posts()) : $top_query2->the_post();
$do_not_duplicate = $post->ID; ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> <?php comments_number('(0)','(1)','(%)'); ?></li>
<?php endwhile; ?>
</ul>
Alles anzeigen
Ist im Grunde genau das, was marX vorgeschlagen hat. ;)