Is it possible to output a list of all internal tags even it has no posts associated with it? It seems that iterating through tags using a function such as:
{{#get "tags" limit="all" filter="visibility:internal" as |tags|}}
{{#tags}}
{{slug}}
{{/tags}}
{{/get}}
doesn’t work in this case.
Any help would be much appreciated!
It should be something like:
{{#get "tags" limit="all"}}
{{#foreach tags visibility="internal"}}
{{slug}}
{{/foreach}}
{{/get}}
Thanks for the suggestion. Still doesn’t seem to be working unless the tag has been associated with a post. I wonder if this is even possible? If not, why wouldn’t it be?
In the documentation, it says:
tags - any tag that has a post associated with it
Can you please tell us why you’re trying to query tags which haven’t been associated with posts?