Wordpress: Check if there are previous posts before displaying link

前端 未结 4 1669
逝去的感伤
逝去的感伤 2021-01-05 01:03

I\'m using the following code to display a \'previous posts\' link on my Wordpress blog.

     
4条回答
  •  一生所求
    2021-01-05 01:21

    None of the answers worked for me. I solved it this way:

    $next = get_permalink(get_adjacent_post(false,'',false)); //next post url
    $prev= get_permalink(get_adjacent_post(false,'',true)); //previous post url
    
        Previous
    
    
        Next
    
    

提交回复
热议问题