Created
March 26, 2019 12:14
-
-
Save chered/df0621495b12c809fc22d5b1b7a398c1 to your computer and use it in GitHub Desktop.
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 | |
global $wp_query; | |
$total_results = $wp_query->found_posts; | |
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; | |
?> | |
Found <?php echo $total_results ;?> Results | |
Page <?php echo $paged; ?> of <?php echo $wp_query->max_num_pages; ?><br /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment