Hi Umesh,
Thank you for the click reply – thats exactly what I was looking for.
If anybody has a similar issue – here’s my code;
<?php
$terms = wp_get_object_terms( $userid, 'user_sector' );
foreach($terms as $term) {
echo '<div class="sector">'. $term->name.'</div>';
}
?>
* I am required to use $userid instead of $user in this instance.