ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,761
- Points
- 823
Reputation:
Hello
I have a simple finder that fetches the last 5 posts posted on a specific thread.
Sometimes I'd like to order the posts in an ASC order, other times I'd like to order them DESC.
How can I achieve that?
I now have 2 finders:
PHP:
Read more
Continue reading...
I have a simple finder that fetches the last 5 posts posted on a specific thread.
Sometimes I'd like to order the posts in an ASC order, other times I'd like to order them DESC.
How can I achieve that?
I now have 2 finders:
PHP:
Code:
$postFinder = \XF::finder('XF:Post')
->where('thread_id', $threadId)
->order('post_id', 'DESC')
->limit($limit);
$reversedPostFinder = \XF::finder('XF:Post')
->where('thread_id', $threadId)
->order('post_id', 'ASC')
->limit($limit)...
Read more
Continue reading...