XF 2.0 $postsOnPage in post_macros template?

Idhae

Active member
Hi,
im searching for a solution to get the posts on page count in post_macros template.
In the thread_view template I could do something like this:

PHP:
$postsOnPage = count($posts);

Should I extend the post controller to get the count in the $post object or exist it somewhere?
 
You can probably do this, but not tested:
HTML:
{{ count($__globals.posts) }}
$__globals gives you access to the parent variable scope.
 
Top Bottom