Create a different pagination
-
I’m working in a project where based on the design developed i have to reach a different pagination look out.
What i want to achieve is this “<Prev 1/19 Next>”
This is my code so far`
<nav class= "pagination"> <?php echo paginate_links( array( 'current' => $paged, 'total' => $newsPost->max_num_pages, 'aria_current' => 'page', 'show_all' => false, 'prev_next' => true, 'prev_text' => __( '« Prev' ), 'next_text' => __( 'Next »' ), 'end_size' => 0, 'mid_size' => 0, 'type' => 'plain', )); ?> </nav>
So the previous and next button to show all the time, and in the middle the active page / total number of pages.
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Create a different pagination’ is closed to new replies.