How to ignore latest post
-
Hi guys, i wanted a small help on how to ignore the latest post form the below loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post"> <!-- Display the Title as a link to the Post's permalink. --> <h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2> <!-- Display the Time. --> <small>on <?php the_time('F jS, Y'); ?> in <?php the_category(', '); ?> </small> <!-- Display the Post's Content in a div box. --> <?php the_content(); ?> <!-- <a href="" class="button">Read More</a>--> <div class="separator"></div> </div> <?php endwhile; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to ignore latest post’ is closed to new replies.