I need to order my entries with the most recent activity first. This is a mashup of the orderby=“date|most_recent_comment” parameter— which (unless I’m missing something) does not do what I’m trying to accomplish.
I need the final result to display like this:
Entry D - (date 11/27 and 0 comments)
Entry A - (date 11/22 and 1 new comment on 11/26)
Entry C - (date 11/24 and 1 new comment on 11/25)
Entry B - (date 11/23 and 0 comments)
But orderby=“date|most_recent_comment” doesn’t seem to work this way. That scheme orders everything by entry_date first and THEN by most_recent_comment. No good.
So I guess, I’m looking for an orderby=“activity” parameter.
Curious to know if there are any plugins or workarounds for this? I’ve searched Devot:ee and haven’t been able to come up with anything.