Dominique Vial
Dominique Vial

Reputation: 3979

How to sort pages in reverse chronological order?

I want to display pages in reverse chronological order based on page's name. Is there an easier way to do this than changing the page names?

Here is the Kirby's example. /content/blog/20121212-my-first-article /content/blog/20132206-a-second-article /content/blog/20142806-the-latest-article

I want the latest post – 20142806-the-latest-article – to be displayed first.

Upvotes: 1

Views: 224

Answers (1)

François Romain
François Romain

Reputation: 14393

There is a kirby method named flip: <?php $articles = $page->children()->flip() ?>

https://getkirby.com/docs/cheatsheet/pages/flip

Upvotes: 1

Related Questions