Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 05:27
Show Gist options
  • Save spencejs/5226575 to your computer and use it in GitHub Desktop.
Save spencejs/5226575 to your computer and use it in GitHub Desktop.
Pagination
// get total number of pages
global $wp_query;
$total = $wp_query->max_num_pages;
// only bother with the rest if we have more than 1 page!
if ( $total > 1 ) {
// get the current page
if ( !$current_page = get_query_var('paged') )
$current_page = 1;
// structure of “format” depends on whether we’re using pretty permalinks
$format = empty( get_option('permalink_structure') ) ? '&page=%#%' : 'page/%#%/';
echo paginate_links(array(
'base' => get_pagenum_link(1) . '%_%',
'format' => $format,
'current' => $current_page,
'total' => $total,
'mid_size' => 2,
'type' => 'list'
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment