Current File : /pages/54/47/d0016649/home/htdocs/cd24/wp-content/themes/dreier/woocommerce/loop/pagination.php |
<?php
/**
* Pagination - Show numbered pagination for catalog pages.
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.2.2
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $wp_query;
if ( $wp_query->max_num_pages <= 1 )
return;
?>
<nav class="woocommerce-pagination">
<?php
cloudfw( 'pagination', array( 'echo' => true, 'page' => max( 1, get_query_var('paged') ), 'pages' => $wp_query->max_num_pages) );
?>
</nav>