Wordpress索引的上一个帖子页面显示与索引相同的帖子

时间:2012-07-13 21:50:13

标签: php wordpress

我的旧/新帖子链接在我的主页链接到第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 } ?>

1 个答案:

答案 0 :(得分:0)

我认为你不应该在_e()next_posts_link内使用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_link以及previous_posts_link_e()