Also die Beiträge immer so zweit nebeneinander bekomme ich hin, aber ich schaffe es nicht, nach 4 Beiträgen die Anordnung zu ändern.
PHP
<?php if ( have_posts() ) : ?>
<?php $first = true; ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="entry<?php if( $first == true ) echo " first" ?>">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="details">
Posted by <?php the_author_posts_link() ?> on <?php the_time( 'd. M Y' );?> |
<?php the_category( ', ' ) ?> <?php edit_post_link( 'Edit this', '', '' ); ?>
</div>
<?php the_excerpt() ?>
<div class="details">
<?php comments_popup_link( 'Keine Kommentare', '1 Kommentar', '% Kommentare' ); ?> | <span class="read-on"><a href="<?php the_permalink() ?>">weiterlesen ...</a></span>
</div>
</div>
<?php if ( $first == true ) { $first = false; } else { echo '<div class="clear"></div>'; $first = true; } ?>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Nichts gefunden</h2>
<p class="center">Du suchst nach Etwas, das hier nicht ist.</p>
<?php include ( TEMPLATEPATH . "/searchform.php" ); ?>
<?php endif; ?>
Alles anzeigen
Wie löse ich die Anordnung aber nach dem 4. Beitrag?