I am setting up a site to display related presenters on an event post. The relationship is set up using MB Relationships. Along with a presenter's image and name, I want to be able to display the terms from a custom taxonomy that have been applied to that presenter (taxonomy slug is presenter-type). What bit of code do I need to use to pull the applied taxonomy terms from that custom taxonomy in MB Views? I would like the associated terms for the presenter-type taxonomy to be displayed with a " | " seperator.
<h2 class="centered">
Event Presenter(s)
</h2>
<div class="presenters_container">
{% set relationship = attribute( relationships, 'event-presenter-relationship' ) %}
{% for post in relationship.to %}
<a href="{{ post.url }}">
<span class="presenter_card">
<img src="{{ post.thumbnail.medium_large.url }}" width="{{ post.thumbnail.medium_large.width }}" height="{{ post.thumbnail.medium_large.height }}" alt="{{ post.thumbnail.medium_large.alt }}">
<h3>
{{ post.title }}
</h3>
<p>
I WANT THE ASSOCIATED TERMS FROM THE PRESENTER-TYPE TAXONOMY DISPLAYED HERE, SEPERATED BY |
</p>
</span>
</a>
{% endfor %}