Auf der Startseite wird - obwohl ich mehrere Artikel drin hab - immer nur der Neueste gezeigt - warum? Ich möchte gerne alle Artikel darstellen - diesen Code verwende ich dafür:
PHP
<?php if (have_posts()) : ?>
<?php if (have_posts()) : the_post() ?>
<div id="archivbox">
<div class="entry">
<h3 class="entrytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="entrymeta">
<?php _e('Geschrieben am'); ?> <?php the_time('d. F Y ');?> <br>
</div>
<div class="entrybody">
<?php the_content(__('Artikel weiterlesen'));?>
</div>
<?php trackback_rdf(); ?>
<?php endif; ?>
</div></div>
</div>
Alles anzeigen
Kann mir jemand sagen, was ich falsch mache?