Guest User

Untitled

a guest
Jul 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. global $wp_query;
  3.  
  4. $big = 999999999; // need an unlikely integer
  5.  
  6. echo paginate_links( array(
  7. 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
  8. 'format' => '?paged=%#%',
  9. 'current' => max( 1, get_query_var('paged') ),
  10. 'total' => $wp_query->max_num_pages
  11. ) );
  12. ?>
Add Comment
Please, Sign In to add comment