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-7.x/
modules/ taxonomy/ taxonomy.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.module, line 1714 - Enables the organization of content into categories.
Código
function taxonomy_term_title($term) {
return $term->name;
}