In my index.php I display a feature post by pulling from the feature category, then shows my latest posts underneath it. But as soon as you hit the "previous posts" link - the feature post stays on top. How do I make this disappear?
Below is my code:
<?php include('feature-post.php'); ?>
<?php get_sidebar();?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<div class="postBox">
<img src="<?php echo get_post_meta($post->ID, 'thumb', $single = true); ?>" class="thumbs" />
<h4><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title();?></a></h4>
<div class="postBox-entry-content">
<?php the_excerpt();?>
</div><!--postBox-entry-content-->
</div><!--postBox-->
<?php endwhile; endif; ?>
<div class="nav-previous"><?php next_posts_link('« Next page') ?></div>
<div class="nav-next"><?php previous_posts_link('Previous page »') ?></div>