Issue
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 -%}
Solution
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 -%}
...
Answered By - David Jacquel Answer Checked By - Candace Johnson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.