I’m trying to filter a <Loop>
by an ACF field. The problem is the field is inside of an ACF repeater. So I would need to do a <Loop>
to get the field, and then filter by it?
Is this possible? If so, what is the correct syntax?
This is what I tried, and didn’t work, but that was to be expected:
<Loop type=listings field="supertag_id" field_compare="includes" field_value="29">
<div><Field title /></div>
</Loop>
Do I have to do an initial query inside of a <Set>
to then use in the real <Loop>
or something to that effect?