类别分页不工作category.php
请帮帮我
分页不起作用,因为页面每次都执行相同的查询。
从您的操作码来看,您似乎希望第一篇文章的风格与其他文章不同。
If I understood your question correctly, 您不需要使用自定义查询,而是使用WordPress创建的查询——主查询。
这可能会有所帮助。
<?php
global $wp_query;
if( have_posts() ){
while( have_posts() ){
the_post();
if ( $wp_query->current_post == 0 ){ // Check if it is 1st post
// Markup for 1st post
}
else {
// Markup for all other posts
} // End else
}// End: while(have_posts())
} //End: if(have_posts())
?>
<div class="text-center paddingBottom20">
<div class="pagination pagination-sm">
<?php the_posts_pagination( array(
\'screen_reader_text\' => \' \', // this should hide the title
\'prev_text\' => __( \'← পূর্ববর্তী\', \'ourdesh\' ),
\'next_text\' => __( \'পরবর্তী →\', \'ourdesh\' ),
\'before_page_number\'=> \'<b>\',
\'after_page_number\'=> \'</b>\',
\'show_all\'=> false,
) );
?>
</div>
</div>