Forked from raazon/wordpress_post_query_result_count.php
Created
October 20, 2021 22:34
-
-
Save GrindPress/eb91b08047007ad825d7fc3b65edf46c to your computer and use it in GitHub Desktop.
WooCommerce result count / Post result count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * WorpPress post query result | |
| * @since 1.0.0 | |
| * @author Razon Komar Pal | |
| * @return string - like: Showing 1–12 Of 29 Results | |
| */ | |
| if (get_query_var('paged')) { | |
| $paged = get_query_var('paged'); | |
| } elseif (get_query_var('page')) { // 'page' is used instead of 'paged' on Static Front Page | |
| $paged = get_query_var('page'); | |
| } else { | |
| $paged = 1; | |
| } | |
| $postsPerPage = 10; | |
| $args = [ | |
| 'post_type' => 'product', // any post type | |
| 'post_status' => 'publish', | |
| 'posts_per_page' => $postsPerPage, | |
| 'paged' => $paged, | |
| ]; | |
| $product_query = new WP_Query($args); | |
| $total = $product_query->found_posts; | |
| $current = $paged; | |
| if ($total <= $postsPerPage || -1 === $postsPerPage) { | |
| /* translators: %d: total results */ | |
| printf(_n('Showing the single result', 'Showing all %d results', $total, 'text_domain'), $total); | |
| } else { | |
| $first = ($postsPerPage * $current) - $postsPerPage + 1; | |
| $last = min($total, $postsPerPage * $current); | |
| printf(_nx('Showing the single result', 'Showing %1$d–%2$d of %3$d results', $total, 'with first and last result', 'text_domain'), $first, $last, $total); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment