我有一个模板,可以拉动三个帖子query\\u posts()循环。其中两篇帖子被截断为10个单词,就像我在过滤器中设置的一样。第三个决定忽略过滤器,吐出33个单词。我看不出这些帖子之间有什么区别。有人知道为什么会这样吗?
while (have_posts()) : the_post();
$img = get_post_meta($post->ID, \'Featured Thumbnail\', true);
?>
<div style="width:237px; float:left; margin-right:20px;" <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<div class="entry">
<img style="margin-bottom:10px;" src="<?php echo $img; ?>"/><br />
<div style="margin-bottom:5px;">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(\'<h3>\', \'</h3>\'); ?></a></div>
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>