为WordPress添加分页

时间:2022-06-20
本文章向大家介绍为WordPress添加分页,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

有的主题只有向前/向后翻页,不能直接点击页码,还不知道有多少页。可是如果你不知道怎么做,只得叹气换主题——你还可以改呀。

找到输出翻页的代码

一般在主题的index.php(首页模板)中,可能是the_posts_navigation()函数,也可能是主题的自定义函数,这些函数的名字里通常带有the_posts_navigation或the_posts_pagination。我们把它注释掉,换一个。

the_posts_navigation()

该WP自带函数实现了向前/向后翻页的功能,但也只支持到这里,如果想支持页码,需要换一个函数。

get_the_posts_pagination()

该自带函数支持返回向前、向后、页码、当前页的html代码(get前缀的函数返回代码,也可以用the_posts_pagination()直接输出),参考它的源码:

function get_the_posts_pagination( $args = array() ) {
    $navigation = '';
 
    // Don't print empty markup if there's only one page.
    if ( $GLOBALS['wp_query']->max_num_pages > 1 ) {
        $args = wp_parse_args( $args, array(
            'mid_size'           => 1,
            'prev_text'          => _x( 'Previous', 'previous set of posts' ),
            'next_text'          => _x( 'Next', 'next set of posts' ),
            'screen_reader_text' => __( 'Posts navigation' ),
        ) );
 
        // Make sure we get a string back. Plain is the next best thing.
        if ( isset( $args['type'] ) && 'array' == $args['type'] ) {
            $args['type'] = 'plain';
        }
 
        // Set up paginated links.
        $links = paginate_links( $args );
 
        if ( $links ) {
            $navigation = _navigation_markup( $links, 'pagination', $args['screen_reader_text'] );
        }
    }
 
    return $navigation;
}

我们看到这个函数调用了paginate_links()函数,而该函数接受的参数如下:

$args (string|array) (Optional) Array or string of arguments for generating paginated links for archives. 'base' (string) Base of the paginated url. 'format' (string) Format for the pagination structure. 'total' (int) The total amount of pages. Default is the value WP_Query's max_num_pages or 1. 'current' (int) The current page number. Default is 'paged' query var or 1. 'aria_current' (string) The value for the aria-current attribute. Possible values are 'page', 'step', 'location', 'date', 'time', 'true', 'false'. Default is 'page'. 'show_all' (bool) Whether to show all pages. Default false. 'end_size' (int) How many numbers on either the start and the end list edges. Default 1. 'mid_size' (int) How many numbers to either side of the current pages. Default 2. 'prev_next' (bool) Whether to include the previous and next links in the list. Default true. 'prev_text' (bool) The previous page text. Default '« Previous'. 'next_text' (bool) The next page text. Default 'Next »'. 'type' (string) Controls format of the returned value. Possible values are 'plain', 'array' and 'list'. Default is 'plain'. 'add_args' (array) An array of query args to add. Default false. 'add_fragment' (string) A string to append to each link. 'before_page_number' (string) A string to appear before the page number. 'after_page_number' (string) A string to append after the page number. Default value: '' https://developer.wordpress.org/reference/functions/paginate_links/

那么,我们怎么用起来呢

在index.php(首页模板)中使用

$pagination = get_the_posts_pagination( array(
'mid_size' => 3,
'prev_text'=>__('上一页','textdomain'),
'next_text' => __( '下一页', 'textdomain' ),
) );
$pagination = str_replace('"next page-numbers"', '"next uk-button uk-button-link " style="font-size:18px"', $pagination);
$pagination = str_replace('"prev page-numbers"', '"prev uk-button uk-button-link  " style="font-size:18px"', $pagination);
$pagination = str_replace(''page-numbers'', '"uk-button uk-button-link " style="font-size:18px" ', $pagination);
$pagination = str_replace(''page-numbers current'', '"uk-button uk-button-link " style="font-size:18px"', $pagination);
$pagination = str_replace('下一页</a>', '下一页</a></div>', $pagination);
$pagination = str_replace('<a class="next', '<div class="nav-next"><a class="next', $pagination);
$pagination = str_replace('上一页</a>', '上一页</a></div>', $pagination);
$pagination = str_replace('<a class="prev', '<div class="nav-previous"><a class="prev', $pagination);
echo $pagination;

__()是个翻译函数,从文本域中获取翻译后的内容,不过我直接改了第一个参数,而不是对应的翻译,不管了。

可以看到我传入了一个关联数组,mid_size代表了当前页左右都显示多少页。

这个函数返回的html代码,为了处理这段代码,不得不用str_replace,最后echo,我们就可以输出与主题风格相符的页码了。