- This topic has 1 reply, 2 voices, and was last updated 9 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Finding maximum number of posts
Hello,
Could you please advise on how I can retrieve maximum number of posts in my PHP Results script? I want be able to display a message along the lines of “Showing x of y items”. I can use “found_posts; ?>” to show x. How do I find y?
Thank You (still learning WP so apologies if this is a dumb question)
It MIGHT be possible using PHP, something like this:
<?php global $wp_query; ?>
<div>Found <?php echo $wp_query->found_posts; ?> Posts</div>
But the query name might be the issue, because it depends on your theme. I stumbled on this by accident because I was trying to find how many posts there were after filtering, but this code gave me the total number before filtering.
For my own needs I have spent over a week on this without any joy, so I am fairly sure I can’t offer much more help.