Forum › General Inquiry
Hi,
I’m looking for a way to check the post title:
`{{#each posts}}` ` {{#checkIf post.title ‘==’ “My Title”}}` ` … … …` ` {{/checkIf}}` `{{/each }}`
post.title doesn’t work. Is there any way to do it?
Thank you.
This is solution:
`{{#each posts}}` ` {{#checkIf title ‘==’ “My Title”}}` ` … … …` ` {{/checkIf}}` `{{/each}}`
it didn’t work because the post was hidden 🙁
`{{#each hiddenPosts}}` ` {{#checkIf title ‘==’ “My Title”}}` ` … … …` ` {{/checkIf}}` `{{/each}}`
Ciao