function taxonomy_term_title

7.x taxonomy.module 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.

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

File

drupal-7.x/modules/taxonomy/taxonomy.module, line 1714
Enables the organization of content into categories.

Code

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