Skip to content

Instantly share code, notes, and snippets.

@DimaKriuchko
Last active February 18, 2021 09:50
Show Gist options
  • Select an option

  • Save DimaKriuchko/3af8d1fc187cf7b5338a92afa42948d3 to your computer and use it in GitHub Desktop.

Select an option

Save DimaKriuchko/3af8d1fc187cf7b5338a92afa42948d3 to your computer and use it in GitHub Desktop.
<span class="total-info">
<?php _e( 'Showing', DOMAIN ) ?>
<?php
if( $paged == 1 ) {
echo '1';
} else {
echo $products_per_page * ($paged - 1);
}
?>
-
<?php
if( $products_per_page * $paged > $wp_query->found_posts ) {
echo $wp_query->found_posts;
} else {
echo $products_per_page * $paged;
}
?>
<?php _e( 'of', DOMAIN ) ?>
<?php echo $wp_query->found_posts; ?>
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment