Created
March 25, 2015 04:12
-
-
Save liderdesarrollo/0696634db085c3dcb4c7 to your computer and use it in GitHub Desktop.
Paginador wordpress manual
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
$total = $the_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 | |
if( get_option('permalink_structure') ) { | |
$format = '?paged=%#%'; | |
} else { | |
$format = '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