Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Get children pages by creation date, not modified date

Started by Muut Archive 9 years ago · 1 replies · 529 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 1326 9 years ago
Archive · by Muut Archive, 9 years ago
2 921 9 years ago
Archive · by Muut Archive, 9 years ago
2 4050 9 years ago
Archive · by Muut Archive, 9 years ago
1 2928 9 years ago
Archive · by Muut Archive, 9 years ago
3 1107 9 years ago