hi podz
yes i’ve looked at that, i tried to add some of the code from there but it does not work for me
the loop code in my WP version (1.5) looks like this
<!--loop starts here-->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?>
<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_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.
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<!--loop ends here-->
the code in the codex’s loop starts like this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
i’m not sure what i’m supposed to add / romove / replace..??
cheers
nat