Gang,
Look at http://jbreitenbuch.blogs.wooster.edu and note the doubling of some posts. What I have noticed is that only posts that are in multiple categories are appearing multiple times. They appear as many times as categories they are in. The code in index.php for treacle is
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<?php the_date('','<h2>','</h2>'); ?>
<h3 id="post-<?php the_ID(); ?>">
<?php the_title(); ?>
<span class="edit"><?php edit_post_link(__('edit this post')); ?></span>
</h3>
<div class="storycontent">
<?php the_content(__('[continued...]')); ?>
</div>
<p class="meta">
<?php _e("posted to"); ?> <?php the_category(',') ?> @
<a href="<?php the_permalink() ?>"
title="<?php _e('link to') ?><?php the_title() ?>"><?php the_time() ?></a>
</p>
<p class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('be the first to comment'), __('be the second to comment'), __('add to the % comments')); ?>
</p>
<?php trackback_rdf(); ?>
<?php comments_template(); // Get comments.php template ?>
</div>
<!--end .post-->
<?php endwhile; else: ?>
<?php include (TEMPLATEPATH . '/errormessage.php'); ?>
<?php endif; ?>
<h4>
<?php posts_nav_link('','','previous page') ?> |
<a href="<?php echo get_bloginfo ('url') ?>"><?php _e ('home') ?></a> |
<?php posts_nav_link('','next page','') ?>
</h4>
<?php get_footer(); ?>
Any reason this would double posts? They are only listed in the manage area once so they are not in the db twice? Thanks.