我在页面上设置了以下循环,但它缺少了第一篇帖子。有人知道为什么会这样吗?
<div class="gallery">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="gallery-item">
<a href="<?php esc_url( the_permalink() ); ?>">
<?php the_post_thumbnail(\'thumbnail\'); ?>
<div class="view-item">
<span>
<h2><?php the_title(); ?></h2>
<p>View project</p>
</span>
</div>
</a>
</div>
<?php endwhile; ?>
</div>
<?php bones_page_navi(); ?>
<?php endif; ?>
</div>