function taxonomy_term_title

Title callback for term pages.

Parameters

$term: A term object.

Return value

The term name to be used as the page title.

1 string reference to 'taxonomy_term_title'
taxonomy_menu in drupal/modules/taxonomy/taxonomy.module
Implements hook_menu().

File

drupal/modules/taxonomy/taxonomy.module, line 1725
Enables the organization of content into categories.

Code

function taxonomy_term_title($term) {
  return $term->name;
}