How can I display a term’s name & description for a custom taxonomy within The Loop (single post page template)?
Currently I can show its name like this:
the_terms( $post->ID , 'director', 'director: ');
but can’t get the description
EDIT
I dont want to use extra php coding like:
$directors = get_the_terms($post->ID ,'director');
foreach($directors as $director){
$director_name = $director->name;
$director_desc = $director->description;
}