taxonomy_term_title

taxonomy_term_title(Term $term)

Title callback for term pages.

Parameters

\Drupal\taxonomy\Entity\Term $term: A taxonomy term entity.

Return value

The term name to be used as the page title.

File

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

Code

function taxonomy_term_title(Term $term) {
  return $term->getName();
}
doc_Drupal
2016-10-29 09:46:33
Comments
Leave a Comment

Please login to continue.