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
Thank you. Could you give me any pointers on how to use this method? It seems like it is what I am looking for but I can’t quite figure out how to use it. Is it called in the Frontmatter or does it need to be part of the Twig code in the main page?