Hi there,
Just a simple one here. In my frontmatter, I would like to create a collection using that pulls in anything tagged with "oranges" OR "apples". When defined as below, it only brings in things tagged with BOTH "oranges" AND "apples". Is there a simple way to define the collection such that any post tagged with either of the tags is in the collection?
title: 'Oranges & Apples'
content:
items:
'@taxonomy.tag':
- oranges
- apples
order:
by: date
dir: desc
limit: 5
pagination: true