Schon okay. Aber wenn du schon RTF-Dateien anhängst, dann kennzeichne die bitte auch so. ;-) Ich poste hier nochmal deinen Code:
<?php get_header(); ?>
<div class="entry">
<?php if (have_posts()) : ?>
<?php $firstpostquery = new WP_Query('showposts=8'); ?>
<?php while($firstpostquery->have_posts()) : $firstpostquery->the_post(); $firstpost = $post->ID; ?>
<div class="post" id="post-<?php the_ID();?>">
<h2 class="uberschrift"><a href="<?php the_permalink()?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small>geschrieben von <?php the_author() ?> on <abbr title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s – %2$s'), the_date('', '', '', false), get_the_time()) ?></abbr> - <?php if(function_exists('the_views')) { the_views(); } ?> </small><br /><br />
<div class="line"></div>
<div class="postbg"><?php the_excerpt(); ?>
</div>
<br />
<?php the_tags('Tags: ', ', ', '<br />'); ?>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Editieren', '', ' | '); ?> <?php comments_popup_link('Keine Kommentare »', '1 Kommentar »', '% Comments »'); ?><br />
</div>
<?php endwhile;?>
<?php endif;?>
<?php if (have_posts()) : ?>
<?php $count=0; while (have_posts()) : the_post(); if(!($firstpost == $post->ID)) : ?>
<?php if($count % 1 == 0) echo '<div class="left">'; else echo '<div class="right">'; ?>
<!-- <div class="excerpt" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><abbr title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s – %2$s'), the_date('', '', '', false), get_the_time()) ?></abbr> by <?php the_author() ?> </small>
<div class="clear"></div>
<p><?php the_content_rss('', TRUE, '', 10) ; ?></p><div class="clear"></div>
<span class="smallies"><?php comments_popup_link('Keine Kommentare »', '1 Kommentar »', '% Comments »'); ?></span>
</div> -->
</div>
<?php if($count % 2 != 0) echo '<div class="clear"></div>';?>
<?php $count++; endif; ?>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Alte Einträge') ?></div>
<div class="alignright"><?php previous_posts_link('Neue Einträge »') ?></div>
</div>
<?php else : ?>
<div class="post">
<h2 class="center search">Nix gefunden!</h2>
<p class="center">Warum ist diese Seite leer?</p>
</div>
<?php endif; ?>
</div>
<div>
<?php include (TEMPLATEPATH . '/topbar.php'); ?>
<div>
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
<?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
</div>
</div>
<br clear="all" />
<?php get_footer(); ?>
</div>
</body>
</html>
Alles anzeigen
Du wendest hier die Funktion, den 1. Artikel anders anzuzeigen, auf alle Artikel an. Kann man machen, auch wenns sicher nicht so vom Theme-Autor gedacht ist. Aber ändere das mal ein wenig, und zwar so:
$firstpostquery = new WP_Query([COLOR="Red"]$query_string.'&posts_per_page=8'[/COLOR]);
So sollte es funktionieren.