list articles combine order constraints
  • Hi all,
    how can there being created a list, which is ordered 1st byissue asc, and 2nd bysection desc?
    I tried
    {{list_articles length="20" ignore_issue="true" ignore_section="true" constraints="type is news" order="byIssue asc, bySection desc"}}

    but only "bySection desc" is applied.


    Best regards,
    Thomas.

    Post edited by Adam Thomas at 2012-06-05 11:39:20
  • 1 Comment sorted by
  • Ok, solution is not to divide it by a "," (comma), if you write

    order="byIssue asc bySection desc"

    then it works well.