taxonomy_term_title

Versions
mediamosa-21
taxonomy_term_title($term)

Title callback for term pages.

Parameters

$term A term object.

Return value

The term name to be used as the page title.

Code

modules/taxonomy/taxonomy.module, line 1284

<?php
function taxonomy_term_title($term) {
  return check_plain($term->name);
}
?>