Skip to content

Instantly share code, notes, and snippets.

@ccurtin
Created November 28, 2014 06:04
Show Gist options
  • Select an option

  • Save ccurtin/aac287c233062f13cad1 to your computer and use it in GitHub Desktop.

Select an option

Save ccurtin/aac287c233062f13cad1 to your computer and use it in GitHub Desktop.
:WORDPRESS: numeric pagination simple
<?php
// Numbered Pagination
function wp_pagination() {
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment