How to get all tags bu filtering wit a specific tag?

I’m trying to get all tags those are assigned as secondary tags of portfolio.
I tried like this, but failed :’(

{{#get "tags" limit="all" filter="primary_tag:portfolio"}}
    {{ tags }}
{{/get}}

Your Question Is Not Clear. I Think You Want To Filtering The Data By Tag Name.

{{#get "tags" limit="all" filter="tag:portfolio"}}
    {{#foreach tags}}
       <a href="{{url}}">{{name}}</a>
    {{/foreach}}
{{/get}}
1 Like