function taxonomy_term_title

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.

File

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

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!taxonomy!taxonomy.module/function/taxonomy_term_title/7.x