Displaying a custom taxonomy term’s name & description

Have a look at get term(). This return the name and description for a term.

Here is the axamples given in the codex

Gives you term name: e.g. Term Name Example

$name = $term->name;

Gives you term description: e.g. This is my new cool custom term.

$desc = $term->description;