previous_posts_link返回空白值

时间:2015-08-04 10:28:39

标签: wordpress

我正在唱下面提到的代码以在我的帖子之间导航,但上一个和下一个帖子链接没有显示任何内容,只是在浏览器上返回空白。

在循环关闭后,我在index.php和single.php页面上使用了下面提到的代码。

index.php:和single.php

SharePoint.Emulators

预期结果:

上一个/下一个

但我得到了 的结果:

/

我在这里遗漏了什么。

1 个答案:

答案 0 :(得分:2)

尝试在功能$the_query->max_num_pages中添加next_posts_link(),并根据您的查询设置$the_query变量。

// the loop
while ( $the_query->have_posts() ) : $the_query->the_post(); 
?>
<?php the_title(); ?>
<?php endwhile; ?>

<?php

// next_posts_link() usage with max_num_pages
next_posts_link( 'Older Entries', $the_query->max_num_pages );
previous_posts_link( 'Newer Entries' );
相关问题