我的主页上的旧/新帖子链接指向第 2,3 页等...但是这些页面显示与主页完全相同的 6 个帖子。这可能是什么原因造成的?我的代码如下
来自我的 index.php
<?php if (function_exists('page_navi')) { // if experimental feature is active ?>
<?php page_navi(); // use the page navi function ?>
<?php } else { // if it is disabled, display regular wp prev & next links ?>
<nav class="wp-prev-next">
<div class="navigation>
<?php next_posts_link(_e('« Older Entries', 'bonestheme')) ?>
<?php previous_posts_link(_e('Newer Entries »', 'bonestheme')) ?>
</div>
</nav>
<?php } ?>