Created
November 16, 2016 10:46
-
-
Save alokstha1/9936066d5a05c22e732b29be2f36e01f to your computer and use it in GitHub Desktop.
Numeric pagination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo paginate_links( array( | |
'base' => @add_query_arg('paged','%#%'), | |
'format' => '?paged=%#%', | |
'current' => (get_query_var('paged')) ? get_query_var('paged') : 1, | |
'mid-size' => 1, | |
'total' => $cat_posts->max_num_pages | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment