I am trying to pull the custom fields of the assigned custom post taxonomy on the post using views. I currently cant get it to pull the assigned custom taxonomy, any help would be amazing!
{% set post_term = mb.get_the_terms( post.ID, 'taxonomy-slug' )[0] %}
{% set term_meta = mb.rwmb_meta( 'field_id', {'object_type': 'term'}, post_term.term_id ) %}
<div class="authorbio">{{ term.bio }}
</div>