I want to check for array values in an array created from a "split". Is there a way to do it without doing the following:
{%- assign blog_tags_string = blogs.news.all_tags | join ' ' -%}
{%- if blog_tags_string contains blog_title -%}
{%- assign is_tag_page = true -%}
{%- else -%}
{%- assign is_tag_page = false -%}
{%- endif -%}
Reading the documentation we can see that :
contains
can also check for the presence of a string in an array of strings.
So, no join
is necessary, and this will do the job.
{%- if blogs.news.all_tags contains blog_title -%}
...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With