如何使用wp_link_pages()仅显示下一个帖子分页链接

时间:2016-09-15 08:18:44

标签: wordpress wordpress-theming

我想在wordpress网站上只返回下一个帖子页面链接。 这是我的实现

<?php
   wp_link_pages( array(
    'next_or_number' => 'next',
    'nextpagelink' => 'next',
    'previouspagelink' => false,
    'before' => '<div class="page_links">',
    'after'  => '</div>'
  ) );
?>

通过这段代码输出

<div class="page_links">
  <a href="http://localhost/circorunning/?p=542&amp;page=2">next</a>
</div>

当它在页面的第一个实例上时很好,但是一旦我点击下一步,我就会通过html获得此输出。

<div class="page_links">
   <a href="http://localhost/circorunning/?p=542"></a> 
   <a href="http://localhost/circorunning/?p=542&amp;page=3">next</a>
</div>

但我只想要一个链接,主帖上应该没有链接。

<div class="page_links"> 
   <a href="http://localhost/circorunning/?p=542&amp;page=3">next</a>
</div>

我确实想在循环之外使用它。

0 个答案:

没有答案