php 下一个和上一个帖子链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 下一个和上一个帖子链接相关的知识,希望对你有一定的参考价值。

{# Using Timber #}

{# Simple version #}

{% if post.next.link is not empty %}
  <a class="pagination__prev" href="{{post.next.link}}">
    Next Post
  </a>
{% endif %}

{% if post.prev.link is not empty %}
  <a class="pagination__next" href="{{post.prev.link}}">
    Previous Post
  </a>
{% endif %}

{# Fancy version #}

{% if post.next.link is not empty %}
  <a class="pagination__prev" href="{{post.next.link}}">
    <span class="icon-angle-left-fa"></span>
    <span class="hide-sm">
      {{ function('get_limited_title', '25', post.next.id ) }}
    </span>
    <span class="show-sm">
      Next Post
    </span>
  </a>
{% endif %}

{% if post.prev.link is not empty %}
  <a class="pagination__next" href="{{post.prev.link}}">
    <span class="hide-sm">
      {{ function('get_limited_title', '25', post.prev.id ) }}
    </span>
    <span class="show-sm">
      Previous Post
    </span>
     <span class="icon-angle-right-fa"></span>
  </a>
{% endif %}
// Official WordPress functions

next_post_link();
previous_post_link();

previous_post_link('<strong>%link</strong>');

next_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' );

// https://codex.wordpress.org/Function_Reference/next_post_link
// https://codex.wordpress.org/Function_Reference/previous_post_link

// --------------------------

// Return just the URL of the previous post 
$prev = get_permalink(get_adjacent_post(false,'',false));

// Return just the URL of the next post 
$next = get_permalink(get_adjacent_post(false,'',true));

以上是关于php 下一个和上一个帖子链接的主要内容,如果未能解决你的问题,请参考以下文章

php 下一个和上一个帖子链接

具有相同分类术语中的下一个和上一个帖子的自定义帖子类型

PHP 下一个和上一个链接/限制结果

如何使用 php 建立下一个和上一个链接?

Laravel 下一个和上一个分页帖子

在模态中的wordpress帖子中添加下一个和上一个按钮