Ich hab das Problem, dass auf meiner Index Seite zwar die letzten 6 Artikel angezeigt werden, aber man nicht zu älteren Artikel zurückblättern kann.
Ich hab schon versucht das Plugin "Wp-Pagina" einzufügen. Funktioniert aber auch nicht, oder ich mache es falsch. Glaube ich aber nicht.
Die index.php sieht folgendermaßen aus:
PHP
<?php get_header(); ?>
<?php include (TEMPLATEPATH . "/left.php"); ?>
<div id="content">
<?php query_posts('showposts=6'); ?>
<?php if (have_posts()) :?>
<?php $postCount=0; ?>
<?php while (have_posts()) : the_post();?>
<?php $postCount++;?>
<div class="entry entry-<?php echo $postCount ;?>">
<div class="entrytitle">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link zu <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<br /><h4><?php the_time('j. F Y') ?> | <?php the_category(', ') ?> | <?php comments_popup_link('Kommentare »', 'Ein Kommentar »', '% Kommentare »'); ?></h4>
</div>
<div class="entrybody">
<?php the_content('Den Rest des Artikels lesen »'); ?>
</div>
<div class="entrymeta">
</div>
</div>
<div class="commentsblock">
<?php comments_template(); ?>
<br />
</div>
<?php endwhile; ?>
<?php else : ?>
<h2>Nichts gefunden</h2>
<div class="entrybody">Tut mir leid, aber zu dieser Suchanfrage liegt kein Ergebnis vor.</div>
<?php endif; ?>
<?php get_footer(); ?>
</div>
<?php get_sidebar(); ?>
</div>
</body>
</html>
Alles anzeigen
Das Thema ist Digital Pop 1.0.
Hat jemand einen Rat?