我在home.php
中有一个帖子循环:
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 2
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
the_title();
the_content();
}
wp_reset_postdata();
} ?>
如何添加分页(数字)?我寻找了一个教程。我尝试了很多功能,但没有一个起作用。
谢谢
答案 0 :(得分:1)
应该可以使用以下代码:
<?php the_posts_pagination( array( 'mid_size' => 2 ) ); ?>
mid_size
定义在该行的当前页面的任一侧将显示多少页码。
有关包括上一页/下一页链接的各个文本的更多详细信息,请参见:
https://codex.wordpress.org/Function_Reference/the_posts_pagination