This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-23 09:42:53 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pagination layout.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2018-03-30 16:21:47 +00:00
|
|
|
if ( ! function_exists ( 'understrap_pagination' ) ) {
|
2018-05-11 19:28:07 +00:00
|
|
|
|
|
|
|
function understrap_pagination($args = [], $class = 'pagination') {
|
|
|
|
|
|
|
|
if ($GLOBALS['wp_query']->max_num_pages <= 1) return;
|
|
|
|
|
|
|
|
$args = wp_parse_args( $args, [
|
|
|
|
'mid_size' => 2,
|
|
|
|
'prev_next' => true,
|
|
|
|
'prev_text' => __('«', 'understrap'),
|
|
|
|
'next_text' => __('»', 'understrap'),
|
|
|
|
'screen_reader_text' => __('Posts navigation', 'understrap'),
|
|
|
|
'type' => 'array',
|
|
|
|
'current' => max( 1, get_query_var('paged') ),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$links = paginate_links($args);
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<nav aria-label="<?php echo $args['screen_reader_text']; ?>">
|
|
|
|
|
|
|
|
<ul class="pagination">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
foreach ( $links as $key => $link ) { ?>
|
|
|
|
|
|
|
|
<li class="page-item <?php echo strpos( $link, 'current' ) ? 'active' : '' ?>">
|
|
|
|
|
|
|
|
<?php echo str_replace( 'page-numbers', 'page-link', $link ); ?>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
}
|
2018-05-05 08:09:27 +00:00
|
|
|
}
|
2018-05-11 19:28:07 +00:00
|
|
|
|
|
|
|
?>
|