-1

我的主页上的旧/新帖子链接指向第 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('&laquo; Older Entries', 'bonestheme')) ?>
                    <?php previous_posts_link(_e('Newer Entries &raquo;', 'bonestheme')) ?>
                </div>
           </nav>
<?php } ?>
4

1 回答 1

0

我认为您不应该_e()在内部使用next_posts_linkor previous_posts_link_e()被用于echo翻译结果,next_posts_link并且previous_posts_link接受两个参数(可选)但_e()不返回任何内容,而是打印/回显。它应该是

<?php next_posts_link(); ?>

或者

<?php next_posts_link('Older Entries »', 0); ?>

和一样previous_posts_link

参考: next_posts_linkprevious_posts_link_e()

于 2012-07-13T23:39:17.357 回答