Hello
What is the difference between having the author taxonomy defined in site.yaml and page.header.author? If I use the author taxonomy from site.yaml, I can filter blog pages by author, however, if I use the taxonomy in the page header, that filter doesn't work.
The following code
{% if page.taxonomy.author %}
{% for author in page.taxonomy.author %}
<a href="{{ base_url }}/author{{ config.system.param_sep }}{{ author }}">{{ author }}
{% end for %}
{% endif %}
Filter correctly by taxonomy if site.yaml is like this:
taxonomies:
- category
- tag
- author
DO NOT filter by taxonomy if item.md is like this:
taxonomy:
category:
-category1
tag:
-tag1
author:
- Peter
I have defined the taxonomy according to this post:
Set Category and Tag (Taxonomies) as required
How can I solve this problem?




