Okay, I don’t know if this will do it for everyone…but it seems that my theme has some extra features that I don’t use, and one of them was causing these issues. I’m using the 3-column Relaxation theme.
It required me to alter the loop a bit from the theme’s version…here’s the before:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if ( !(in_category(get_settings('3cr_v1_asides_cats_to_exclude_from_blog'))) ) { ?>
<div class="post">
<h1 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
<p class="date"><?php the_time('F jS, Y') ?> by <?php the_author('namefl'); ?>
<div class="entry">
<?php the_content('[more...]'); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php if(!is_single() && ($post==$posts[get_settings('3cr_v1_google_contentarea_adsense_code_pos1')] OR $post==$posts[get_settings('three_column_relax_v1_google_contentarea_adsense_code_pos2')])) { ?>
<?php echo stripslashes(get_settings('3cr_v1_v1_google_contentarea_adsense_code')); ?>
<?php } ?>
</div>
<?php }; ?>
<?php endwhile; ?>
to:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h1 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
<p class="date"><?php the_time('F jS, Y') ?> by <?php the_author('namefl'); ?>
<div class="entry">
<?php the_content('[more...]'); ?>
</div>
</div>
<?php endwhile; ?>
I know it probably won’t fix it for everyone (if anyone else), but hopefully it’ll help some people track down the problem for themselves.