I'm trying to order my news by publish_date. This is what I have so far:
{% set collection = grav.page.collection({
'items': {
'@taxonomy': {
'category': 'Blog',
'tag': 'Spielbericht'
}
},
'order': {
'by': 'header.publish_date',
'dir': 'asc'
},
'limit': 6,
'published': true
}) %}
The result is:
11.05.2022
04.05.2022
09.05.2022
09.05.2022
09.05.2022
09.05.2022
Apparently nothing is sorted here. What am i doing wrong?