私はワードプレスが初めてです。ブログ カテゴリを使用して、すべての投稿を静的ページとして表示しています。ページネーション以外はすべて問題ありません。私がグーグルで検索したとき、それはwordpressの既知のバグであることがわかりました.Hereは私の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 プラグインを使用していますが、静的ページでは機能しません。私を助けてください ?