taxonomy_term_title

Versions
7
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.

Code

modules/taxonomy/taxonomy.module, line 1230

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

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.