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