Hello,
custom field for Taxanomy Advanced ( https://docs.metabox.io/fields/taxonomy-advanced/ ) returns the value already wrapped in HTML list.
{{ my_tags }} outputs:
<ul>
<li><a href="..." title="...">...</a></li>
<li><a href="..." title="...">...</a></li>
</ul>
The same applies for IF statement {% if my_tags == ...
No luck using loops either.
It can be stripped out of HTML tags, yet for the Post field ( https://docs.metabox.io/fields/post/ ), it becomes near to impossible to extract information about selected posts in a way it can be further used in a template. I need to be able to iterate through the selected posts, access their properties and output them the way I need them to be structured.
I have also noticed that RADIO button always returns the value, not the key. There seem to be some filter for outputing variables of any kind. It's nice and easy for sure, yet not suited for more complex tasks.
Is there any way to get unformatted output?
Thank you.