我是wordpress的新手。我正在使用我的博客类别将所有帖子显示为静态页面。一切都很好,除了分页。当我用谷歌搜索时,我发现这是 wordpress 中的一个已知错误。这是我的 page.php 代码:
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
我正在使用 list_category_post 插件进行分页,但它不适用于静态页面。请帮我 ?