这是我的情况,如果你看下一页:http://staging.cancerwellness.com/mind-body/cancerversary/, 您将看到分页不起作用。在研究问题后,我在以下代码中发现了问题:
foreach ($categories as $cat) {
$cat_id = $cat->term_id;
if($cat->name != \'Uncategorized\' && $cat->name != \'Hero\') :
$catURL = get_category_link($cat_id);
echo "<div class=\'side-cat\'><button>".$cat->name."</button><ul>";
query_posts("cat=$cat_id&posts_per_page=5");
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink();?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
<li><a href="<?php echo $catURL; ?>" title="Read All <?php echo $cat->name; ?> Stories">More. . .</a></li>
</ul></div>
<?php endif; } ?>
罪魁祸首是query\\u帖子。是否有一种替代查询帖子的方法,这样它就不会干扰分页?
我正在使用Wordpress 5.1
谢谢你,凯文·戴维斯