taxonomy_term_title

7 taxonomy.module taxonomy_term_title($term)
8 taxonomy.module taxonomy_term_title(TaxonomyTerm $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'

File

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

Code

function taxonomy_term_title($term) {
  return $term->name;
}
Login or register to post comments