Ich habe nun unendlich viele gleiche Artikel die sich wiederholen, seit ich das Update durchgeführt habe.
Wer kann mir den Fehler auf der Index-Seite zeigen:
PHP
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<br>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if (in_category('5')) { ?>
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="storycontent">
<?php the_content('weiterlesen...'); ?>
</div>
<div class="meta"><?php edit_post_link(__('Edit This')); ?></div>
<?php rewind_posts(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if ( !(in_category('5')) ) { ?>
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="storycontent">
<?php the_content_limit(800, '>>weiterlesen<<'); ?>
</div>
<div class="meta"><?php edit_post_link(__('Edit This')); ?></div>
</div>
<?php } ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<?php } ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('j. F Y') ?> <!-- von <?php the_author() ?> --></small>
<div class="entry">
<?php the_content_limit(800, '>>weiterlesen<<'); ?>
<p class="postmetadata">Abgelegt unter <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('bearbeiten','','<strong>|</strong>'); ?> <?php comments_popup_link('Keine Kommentare »', '1 Kommentar »', '% Kommentare »'); ?></p>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« vorherige Artikel') ?></div>
<div class="alignright"><?php posts_nav_link('','nächste Artikel »','') ?></div>
</div>
<?php else : ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen