Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Get children pages by creation date, not modified date

Started by Muut Archive 9 years ago · 1 replies · 606 views
9 years ago

I'm trying to get the 3 most recent blog posts by creation date with the following
page.find('/blog').children.order('date', 'desc').slice(0, 3)
but if I modify an old post it gets in first place.

Any idea how I can achieve that?

9 years ago

Alright, got it to work with this
{% set posts = page.find('/blog').children.slice(1).slice(-3).reverse() %}

Get the last 3 new posts and reverse them so I can show them from newest to oldest.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 2275 9 years ago
Archive · by Muut Archive, 9 years ago
2 1496 9 years ago
Archive · by Muut Archive, 9 years ago
2 4743 9 years ago
Archive · by Muut Archive, 9 years ago
1 3553 9 years ago
Archive · by Muut Archive, 9 years ago
3 1618 9 years ago