Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mrl22/72a21715671998f6d15db8f3b679a307 to your computer and use it in GitHub Desktop.
Save mrl22/72a21715671998f6d15db8f3b679a307 to your computer and use it in GitHub Desktop.
Wordpress Pagination Function
function your_custom_pagination() {
global $wp_query;
$total = $wp_query->max_num_pages;
if ( $total > 1 ) {
if ( !$current_page = get_query_var('paged') ) {
$current_page = 1;
}
echo paginate_links(array(
'base' => get_pagenum_link(1) . '%_%',
'format' => '?paged=%#%',
'current' => $current_page,
'total' => $total,
'mid_size' => 4,
'type' => 'list'
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment