Created
August 21, 2020 23:51
-
-
Save Njengah/30fcf359052f951d18658d45a2fc9cbd to your computer and use it in GitHub Desktop.
Create numeric pagination in WordPress - Snippet to create numeric pagination in WordPress for this tutorial - https://njengah.com/wordpress-custom-pagination/
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 | |
/** | |
* Create numeric pagination in WordPress | |
*/ | |
// Get total number of pages | |
global $wp_query; | |
$total = $wp_query->max_num_pages; | |
// Only paginate if we have more than one 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' => 4, | |
'type' => 'list' | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment