here is my issue.
I am currently in a post (so in single.php). I got the only category that this post is in by using:
$category = get_the_category()[0];
Now, what I would like to be able to know is the current position of that post in that category and I need to be able to retrieve that position without searching through all pages of the category (for performances reasons).
E.g: Let`s say my post is the 14th most recent post in its category, I want to get that value (14) so that I can then calculate on which category page it would be (knowing how many posts are displayed by page)
Thanks