我正在存档中使用此脚本。php以列出当前类别中包含的所有帖子的链接列表。然而,它限制了相对于分配给“设置>阅读>博客页面最多显示帖子”的数量的结果计数。
换言之,此类别中可能有10个帖子,但它最多只能显示在该设置中指定的编号。
如何更改脚本以忽略此设置?
<?php if(is_category()) while (have_posts()) : the_post(); ?>
<li id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
<?php echo get_link_excerpt(); ?>
</li>
<?php endwhile; } ?>