D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
homehopshortterm
/
public_html
/
wp-content
/
themes
/
pixwell
/
woocommerce
/
loop
/
Filename :
pagination.php
back
Copy
<?php /** Don't load directly */ defined( 'ABSPATH' ) || exit; $total = isset( $total ) ? $total : wc_get_loop_prop( 'total_pages' ); $current = isset( $current ) ? $current : wc_get_loop_prop( 'current_page' ); $base = isset( $base ) ? $base : esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); $format = isset( $format ) ? $format : ''; if ( $total <= 1 ) { return; } ?> <nav class="woocommerce-pagination"> <div class="pagination-wrap pagination-number clearfix"> <?php echo paginate_links( apply_filters( 'woocommerce_pagination_args', array( 'base' => $base, 'format' => $format, 'add_args' => false, 'current' => max( 1, $current ), 'total' => $total, 'prev_text' => '<i class="rbi rbi-angle-left" aria-hidden="true"></i>', 'next_text' => '<i class="rbi rbi-angle-right" aria-hidden="true"></i>', 'type' => 'plain', 'end_size' => 3, 'mid_size' => 3, ) ), 10 ); ?> </div> </nav>