Skip to content

Instantly share code, notes, and snippets.

@alokstha1
Created November 16, 2016 10:46
Show Gist options
  • Save alokstha1/9936066d5a05c22e732b29be2f36e01f to your computer and use it in GitHub Desktop.
Save alokstha1/9936066d5a05c22e732b29be2f36e01f to your computer and use it in GitHub Desktop.
Numeric pagination
<?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