How do I calculate the offsets for pagination?

前端 未结 4 591
日久生厌
日久生厌 2020-12-15 00:46

I am working on a pagination feature in a web service I am writing, but my lack of math insight is killing me now. I have a couple of keys: totalItems, cu

4条回答
  •  时光取名叫无心
    2020-12-15 01:09

    For here I'm used code below and works fine.

    
    
    
    
    

    $offset, 'post_type' => 'post', 'posts_per_page' => 30, 'category_name' => $cat_filter, 'post_status' => 'publish', 'paged' => $paged ); $query = new WP_Query( $args_2 ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>

提交回复
热议问题