How to include pagination in a Wordpress Custom Post Type Query

后端 未结 2 868
太阳男子
太阳男子 2020-12-01 05:40

I have the code below:



 have_posts())          


        
2条回答
  •  北海茫月
    2020-12-01 06:16

    When querying a loop with new WP_Query set the 'total' parameter to the max_num_pages property of the WP_Query object.

    Example of a custom query:

    'post', // Your post type name
        'posts_per_page' => 6,
        'paged' => $paged,
    );
    
    $loop = new WP_Query( $args );
    if ( $loop->have_posts() ) {
        while ( $loop->have_posts() ) : $loop->the_post();
    
                 // YOUR CODE
    
        endwhile;
    
        $total_pages = $loop->max_num_pages;
    
        if ($total_pages > 1){
    
            $current_page = max(1, get_query_var('paged'));
    
            echo paginate_links(array(
                'base' => get_pagenum_link(1) . '%_%',
                'format' => '/page/%#%',
                'current' => $current_page,
                'total' => $total_pages,
                'prev_text'    => __('« prev'),
                'next_text'    => __('next »'),
            ));
        }    
    }
    wp_reset_postdata();
    ?>
    

    Example of paginate_links parameters adapted to the custom query above:

    For more reference please visit this link

提交回复
热议问题