WordPress获取下一页链接函数:get_next_posts_link

WordPress函数get_next_posts_link用于在归档页获取下一页链接,在制作归档页翻页导航时非常有用。

1
get_next_posts_link( string $label = null, int $max_page = 0 )

函数参数

$label

字符串值,默认值:null

翻页链接的锚文本

$max_page

整数型,默认值:0

最大页码数

函数使用示例

以下代码放到archive.php模板中,输出当前分类文章列表,并具有翻页功能:

1
2
3
4
5
6
7
8
9
10
11
<?php
    $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
    echo '<ul>';
    while (have_posts()) : the_post();
        echo '<li><a href="' . get_permalink() . '" target="_blank">' . get_the_title() . '</a></li>';
    endwhile;
    echo '</ul>';
    echo get_next_posts_link( '下一页 »', $GLOBALS['wp_query']->max_num_pages );
    echo get_previous_posts_link( '« 上一页' );
    wp_reset_query();
?>

扩展阅读

get_next_posts_link()函数位于:wp-includes/link-template.php

相关函数:

  • posts_nav_link()
  • next_posts_link()
  • previous_posts_link()
  • get_previous_posts_link()
  • paginate_links()
  • wp_link_pages()
  • next_post_link()
  • previous_post_link()
  • next_image_link()
  • previous_image_link()
  • the_posts_pagination()
  • get_the_posts_pagination()
  • the_post_navigation()
  • get_the_post_pagination()
原文链接:https://xiaohost.com/2337.html,转载请注明出处。
0