taxonomy_term_title($term)Title callback for term pages.
$term A term object.
The term name to be used as the page title.
modules/taxonomy/taxonomy.module, line 1284
<?php
function taxonomy_term_title($term) {
return check_plain($term->name);
}
?>