抱歉-这可能是一个显而易见的答案,但如果没有看到您的query\\u posts query,很难说您是否尝试过此操作。当您更改页面上的主查询时,query\\u posts应该是该作业的正确工具。
类似以下查询的内容应该可以工作:
<?php query_posts( \'posts_per_page=100\' ); ?>
<?php if (have_posts()) : ?>
// Something before posts display
<?php while (have_posts()) : the_post(); ?>
// Post Content
<?php endwhile; ?>
// Something after the loop
<?php else: ?>
// Something in case there are no posts
<?php endif;?>
如果您已经尝试过这个方法,您可以编辑您的答案以显示您正在使用的代码吗?此外,您是否使用任何自定义分类法模板,或者所有分类法是否都要经过分类法。php?