如果您希望在使用创建的单个页面上链接到下一页和上一页<!--nextpage-->
那你用错函数了。
get_next_posts_page_link()
, 顾名思义,是为了获取下一页的帖子,并用于存档。
要将分页链接添加到单个页面,请使用wp_link_pages()
, 并在循环中使用它。
while (have_posts()) : the_post();
the_content();
wp_link_pages();
endwhile;
默认情况下,它输出页码,但如果需要“下一页”和“上一页”链接,请设置
next_or_number
参数到
next
:
while (have_posts()) : the_post();
the_content();
wp_link_pages( array(
\'next_or_number\' => \'next\',
) );
endwhile;
请参见
the documentation 有关自定义输出的更多选项。