edit have_posts code in index.php file
-
within my index.php file, i have the following code which makes the new postings appear:
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="contenttext"> <?php the_content(''); ?> </div> </div> <?php endwhile; ?>
how do i edit this so that ONLY the most recent post appears???
please advise. thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘edit have_posts code in index.php file’ is closed to new replies.