Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce
/
templates
/
loop
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!defined('ABSPATH')) { exit; } ?> <p class="woocommerce-result-count"> <?php if (1 === intval($total)) { _e('Showing the single result', 'woocommerce'); } elseif ($total <= $per_page || -1 === $per_page) { printf(_n('Showing all %d result', 'Showing all %d results', $total, 'woocommerce'), $total); } else { $first = $per_page * $current - $per_page + 1; $last = min($total, $per_page * $current); printf(_nx('Showing %1$d–%2$d of %3$d result', 'Showing %1$d–%2$d of %3$d results', $total, 'with first and last result', 'woocommerce'), $first, $last, $total); } ?> </p>