38 lines
808 B
PHP
38 lines
808 B
PHP
<?php
|
|
/**
|
|
* Pagination - Show numbered pagination.
|
|
*
|
|
* More info on overriding template files can be found here: https://www.download-monitor.com/kb/overriding-content-templates/
|
|
*
|
|
* @version 4.9.6
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
if ( $pages <= 1 ) {
|
|
return;
|
|
}
|
|
?>
|
|
<nav class="download-monitor-pagination">
|
|
<?php
|
|
echo wp_kses_post( paginate_links(
|
|
apply_filters(
|
|
'download_monitor_pagination_args',
|
|
array(
|
|
'base' => str_replace( 999999999, '%#%', get_pagenum_link( 999999999 ) ),
|
|
'format' => '',
|
|
'current' => max( 1, get_query_var( 'paged' ) ),
|
|
'total' => $pages,
|
|
'prev_text' => '←',
|
|
'next_text' => '→',
|
|
'type' => 'list',
|
|
'end_size' => 3,
|
|
'mid_size' => 3,
|
|
)
|
|
)
|
|
) );
|
|
?>
|
|
</nav>
|