Wordpress帖子页面循环表现奇怪

时间:2014-10-01 10:21:07

标签: php wordpress

我的Wordpress帖子循环有问题,如果我添加或更新帖子,它决定杀死一个奇数并消失?以前有没有这个问题?

<?php query_posts('posts_per_page=4&cat=3'); while(have_posts()) : the_post(); ?> 

    <div class="eventPostOuter">
        <div class="eventPost">
            <span class="eventsImage">
                <?php the_post_thumbnail( array(200,200) ); ?></span>               
                    <h3><?php the_title(); ?></h3>
                        <span style="padding-bottom: 40px;" class="exerpt"><p><?php echo substr(get_the_excerpt(), 0,200); ?> [...]</p></span>
                            <!--<span class="excerpt" style="padding-top: 20px;"><p><a class="excerptLink" href="<?php the_permalink(); ?>">Read full article</a></p></span>-->



        </div>
    </div>
    <?php endwhile; wp_reset_query(); ?>

那是我的代码,也许我在某处犯了错误?我无法看到问题是什么,它刚刚开始这样做......

1 个答案:

答案 0 :(得分:0)

好的,我解决了这个奇怪的问题,我将字符限制从200改为180并且所有帖子都完美显示。 :S