Twig :: group
The group
filter will group an array of associative arrays or built-in stakx objects based on a given key
Since
0.1.0
Usage
group(sortKey)
Parameters
-
(required)
sortKey
: stringThe key to group by
Example Usage
This can be useful when grouping Content Items based on a category or author. Given a multi-author site as an example, each post's front matter would look like so:
---
title: My Amazing Post 1
author: allejo
---
Using the group
filter will allow you group posts based on the author.
<!--
[
'allejo' => [...],
'wombat' => [...]
]
-->
{{ collections.posts | group('author') }}