I've been trying to list pages by the most recent comment date. I can see orderby has an option for comment count, but nothing for comment date. Comment date is also not an editable region, so I can't go that route. Are there any options for this?
How would I do that? Just a regular PHP sql query inside the couch tag?
Select "couch_comments"."date", "couch_comments"."page_id", "couch_comments"."data", "couch_pages"."page_name" from "couch_comments", "couch_pages" where "couch_comments"."tpl_id" = 39 and "couch_comments"."page_id" = "couch_pages"."id" order by "couch_comments"."date" DESC