-
-
Save gam3ov3r/8568446 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Numeric Page Navigation | |
function bones_page_navi() { | |
global $wp_query; | |
$bignum = 999999999; | |
if ( $wp_query->max_num_pages <= 1 ) | |
return; | |
echo '<nav class="pagination">'; | |
echo paginate_links( array( | |
'base' => str_replace( $bignum, '%#%', esc_url( get_pagenum_link($bignum) ) ), | |
'format' => '', | |
'current' => max( 1, get_query_var('paged') ), | |
'total' => $wp_query->max_num_pages, | |
'prev_text' => '←', | |
'next_text' => '→', | |
'type' => 'list', | |
'end_size' => 3, | |
'mid_size' => 3 | |
) ); | |
echo '</nav>'; | |
} /* end page navi */ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment