Hallo,
bin neu hier im Forum und hoffe, daß mir jemand von Euch weiterhelfen kann.
Auf einem meiner Blogs werden die älteren Blogbeiträge nicht angezeigt, d.h., "ältere Beiträge" können vom Leser gar nicht ausgewählt werden. Es kommt auch nicht Page/1 Page/2 etc. sondern am Ende des Blogs einfach gar nichts...
Hier die Url und die Index.php http://www.vitaminquelle.net/blog
PHP
<?php get_header(); ?>
<div class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php if (function_exists('post_class') ){post_class();}else{ echo "class='post'";} ?> id="post-<?php the_ID(); ?>">
<div class="box_content">
<div class="box_content_b">
<div class="title_b">
<div class="title">
<div class="title_t">
<div class="pad_title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a></h2>
</div>
</div>
</div>
</div>
<div class="entry">
<?php the_content('Readmore...'); ?>
<?php if ( function_exists('the_tags') ) { the_tags( '<span>Tags: ', ', ', '</span><br />'); } ?>
Category :
</div>
<div class="container_metadata">
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<br clear="all" />
<div class="navigation">
<div class="alignleft">
<?php next_posts_link('« Previous Entries') ?>
</div>
<div class="alignright">
<?php previous_posts_link('Next Entries »') ?>
</div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry,but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<div class="commentbox">
<?php comments_template(); ?>
</div>
</div>
<?php get_footer(); ?>
Alles anzeigen
Hat von Euch jemand einen Rat, woran es liegen kann?
Und eine SEO Frage nebenbei... ist sicherlich nicht gerade förderlich, daß alte Beiträge nicht angezeigt werden, oder?
Gruß & Danke für Eure Infos im Vorfeld