#set($results = $dotcontent.pullPerPage(
"+(contentType:Article contentType:Video1 contentType:Quiz contentType:Audio)",
1, 10,
"Video1.publishDate desc, Article.publishDate desc, Quiz.publishDate desc, Audio.publishDate desc"
))
In this example, all the Video1 content items are listed first (ordererd correctly), then the Article items (ordererd correctly), then Quiz items, etc. I seem to be unable to use "publishDate desc" in the sort field like I can with modDate so I can sort everything by publish date regardless of content type.
Is there a way to do this?