One of my all-time favorite topics is WordPress. WordPress is lightweight blogging platform and here is the new article in WordPress about to solve pagination issue with category page in WordPress.
To display paginated posts from one category with WordPress is quite easy if we are using have_post with the while loop. It does not create any issue with have_post but when you go with foreach,get_posts, for loop, wp_query or custom query, your pagination stops working or create some issue. Sometimes you use the multi query or nested loop and its also create issue with pagination.
So, Let’s see how to use pagination when you are working to get posts from the category in WordPress or to get the post in a category page.
First of all declare wp_query
global variable.Next create argument $arg_pagi
with required current ,total and base parameter and pass it to your pagination function.
Let’s understand by code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | global $wp_query; $args_pagi = array( 'base' => add_query_arg( 'paged', '%#%' ), 'total' => $result->max_num_pages, 'current' => $page ); $args =array('post_type' => 'post','post_status' => 'publish','cat' => 3); $myposts = new WP_Query( $args ); foreach( $myposts->posts as $data ) : setup_postdata($data); // your desired code endforeach; //call pagination function echo paginate_links( $args_pagi); |
Also Read:
Fixed Pagination in WordPress
To use Pagination with Taxonomy in WordPress
It’s Wrap. I hope that you find this technique useful to someone.
Don’t hesitate to use this code in your WordPress projects and post your comments if you need help. As always, thanks for reading. Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.
Comments (1)