I'm not using any plugins that affect post content or excerpts.
this is the very simple code I'm using
<? query_posts('posts_per_page=10&caller_get_posts=1');
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
if( have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<div class="post-title"><a>" rel="bookmark" title="Permanent Link to <? the_title_attribute(); ?>"><? the_title(); ?></a></div>
<div class="post-date"><? the_date('F j, y') ?></div>
<div class="post-content"><? the_excerpt() ?></div>
<div class="post-footer">POSTED BY <? the_author() ?> and last updated on <? the_modified_time('F jS, Y'); ?> at <? the_modified_time('g:i a'); ?>
<? comments_popup_link('« 0 Comments »', '1 Comment', '% Comments'); ?>
</div>
</div>
<p> </p>
<? endwhile; endif; //end the loop ?>
and here is the page on my test server if you want to see the wordcount outputs for yourself
http://uofmbooks.com/wordpress/
the first 7 posts are fine, but the 8th post "Minutes for 2-1-10" contains 30 words. Minutes for 10-27 has 22 words. etc...