在为我们正在创建的站点开发环境时,我遇到了一个奇怪的问题。我们有自定义的帖子类型,所以我不确定这是否是它不能正常工作的原因。然而,我设法让帖子一次显示5条,而不是正常的10条。然而,在其中一个类别中,它只显示20个帖子中的10个。奇怪的是,如果我转到另一个类别,它会正确运行。
<?php echo category_description(); ?>
<?php if (have_posts()) : ?>
<?php $i = 0; while (have_posts() && $i < 5) : the_post(); ?>
<div class = "post">
<h3 class="listing-<?php the_ID(); ?>"> <br>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?> </a> </h3> </br>
<div class = "city"> <b> City:</b> <?php $City = get_post_meta($post->ID, \'City\', true); echo $City;?> </div>
<div class = "price"> <b> Price:</b> <?php $Price = get_post_meta($post->ID, \'Price\', true); echo $Price;?> </div>
<b>Rating:</b>
<div class = "rating"> <?php wp_gdsr_render_article(); ?> </div>
</div> <br>
</br>
<?php $i++; endwhile; ?>
<div class="navigation">
<div class="alignleft">
<?php previous_posts_link(); ?>
<?php next_posts_link(); ?>
</div>
Answer: 谢谢大家的帮助!
绕过它的方法是:WP Dashboard > Settings > Reading
并将“博客页面最多显示”选项中的数字更改为要显示的页面数。