今天查看网站的时候,发现有一个分类的所有分页页面显示的都是相同的内容,而其他页面是正常的。解决办法是在分页代码中加入如下参数:
文章源自国外主机测评-https://www.zjcp.org/7872.html
'paged' => get_query_var( 'paged' ),
最终分页代码如下:文章源自国外主机测评-https://www.zjcp.org/7872.html
$cat,
'post__not_in' => get_option( 'sticky_posts' ) ,
'posts_per_page' => 10,
'paged' => get_query_var( 'paged' ),
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
?>
3, 'prev_text' =>'<', 'next_text' =>'>') ); ?>
文章源自国外主机测评-https://www.zjcp.org/7872.html文章源自国外主机测评-https://www.zjcp.org/7872.html