所以我使用常规分页
previous_posts_link('<'); // using previous icon like this couse of easyer styling
echo paginate_links( $args ) ;
global $wp_query;
$big = 999999999;
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'prev_text' => __(''),
'next_text' => __(''),
'mid_size' => 2
) );
next_posts_link('>'); // using next icon like this couse of easyer styling
所以我的分页看起来像这样,它有下一个和上一个图标和页码:
< 1 2 3 >
我还需要有可能使用这两个图标转到分页的第一页和最后一页
<< 和 >>
所以我想出了如何转到分页的第一页,因为它在我的索引页面上,我只需链接这两个图标:<< 与这个:
bloginfo('wpurl');
所以我的问题是如何转到分页的最后一页?fkors 我的分页应该是这样的:
<< < 1 2 3 > >>