Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chered/df0621495b12c809fc22d5b1b7a398c1 to your computer and use it in GitHub Desktop.
Save chered/df0621495b12c809fc22d5b1b7a398c1 to your computer and use it in GitHub Desktop.
<?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