I have 3 colums: all post, post for tags x-xx, post for tags y-yy
First column
{{#each posts}}
{{title}}
{{/each}}
Secont column tags – 120,26
{{#getPostsByTags "count=10&tag_as=id&tags=120,24"}}
{{ title }}
{{/getPostsByTags}}
Third column tags 34,21 excluded 120,26 (it works)
{{#getPostsByTags "count=10&tag_as=id&tags=34,21&excluded=120,24&offset=2&orderby=modifiedAt&ordering=asc"}}
{{ title }}
{{/getPostsByTags}}
How can I exclude from all posts, posts with tags 34,21,120,26 ?
{{#getPostsByTags "count=10&tag_as=id&excluded=120,99,98,66,30,24"}}
{{ title }}
{{/getPostsByTags}}
or
{{#getPostsByTags "count=10&tag_as=id&tags=1-66&excluded=120,99,98,66,30,24"}}
{{ title }}
{{/getPostsByTags}}
or
{{#getPostsByTags "count=10&tag_as=id&excluded=120,99,98,66,30,24"}}
{{ title }}
{{/getPostsByTags}}
….
I’m out of ideas.