woocommerce/templates/loop/pagination.php

36 lines
875 B
PHP
Raw Normal View History

2011-12-11 01:08:33 +00:00
<?php
/**
* Pagination - Show numbered pagination for catalog pages.
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.2.2
2011-12-11 01:08:33 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
2011-12-11 01:08:33 +00:00
global $wp_query;
if ( $wp_query->max_num_pages <= 1 ) {
2012-11-27 16:22:47 +00:00
return;
}
?>
2013-01-03 11:40:10 +00:00
<nav class="woocommerce-pagination">
<?php
echo paginate_links( apply_filters( 'woocommerce_pagination_args', array(
'base' => esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ),
2014-04-08 02:29:39 +00:00
'format' => '',
'add_args' => '',
2014-04-08 02:29:39 +00:00
'current' => max( 1, get_query_var( 'paged' ) ),
'total' => $wp_query->max_num_pages,
'prev_text' => '&larr;',
'next_text' => '&rarr;',
'type' => 'list',
'end_size' => 3,
'mid_size' => 3
) ) );
?>
</nav>