Say you have this meta taxonomy defined:
mood - Current Mood
If you want to display linked values from that field for each post, add this inside The Loop:
<p>Mood: <?php echo get_linked_meta(get_the_ID(), 'yourfield') ?></p>
This will output:
Current Mood: happy




