我正在唱下面提到的代码以在我的帖子之间导航,但上一个和下一个帖子链接没有显示任何内容,只是在浏览器上返回空白。
在循环关闭后,我在index.php和single.php页面上使用了下面提到的代码。
index.php:和single.php
SharePoint.Emulators
预期结果:
上一个/下一个
但我得到了 的结果:
/
我在这里遗漏了什么。
答案 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' );