Sorry, we don't support your browser.  Install a modern browser

Filtering shortcuts#267

Filtering content with Kirby can become verbose when multiple steps of child selection and filtering are involved. It would be nice, if Kirby offered a few shortcuts:

Wildcard selection:
$site->find('a/b/c/*') instead of
$site->find('a/b/c')->children() to select all children.

Filtering children
$site->find('a/b/c')->children('category', 'example') instead of
$site->find('a/b/c')->children()->filterBy('category', 'example') to get a filtered child collection.

3 years ago