Next Post/Previous Post Problem
-
I have the following code on my home page.
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<span class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></span>
<span class=”date”><?php the_time(‘F jS, Y’) ?></span>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts(‘« Older Articles’) ?></div>
<div class=”alignright”><?php previous_posts(‘Newer Articles »’) ?></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 get_search_form(); ?><?php endif; ?>
It is not showing the links for Next and Previous Articles. All it shows is my web address.
Can someone tell me what I have done wrong?
Thanks
- The topic ‘Next Post/Previous Post Problem’ is closed to new replies.