🌱 The next big step: Kirby 4 Alpha Learn more
Skip to content

Section filters

Pages and files sections support a query option to filter pages and files using our query string syntax. Manual sorting will be disabled for sections with a query.

expensive:
  extends: sections/products
  label: Expensive
  query: page.childrenAndDrafts.filter('price', '>=', '100')
cheap:
  extends: sections/products
  label: Cheap
  query: page.childrenAndDrafts.filter('price', '<=', '99')