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 