taxonomy_term_path
- Versions
- 4.7 – 6
taxonomy_term_path($term)
Code
modules/taxonomy.module, line 38
<?php
function taxonomy_term_path($term) {
$vocabulary = taxonomy_get_vocabulary($term->vid);
if ($vocabulary->module != 'taxonomy' && $path = module_invoke($vocabulary->module, 'term_path', $term)) {
return $path;
}
return 'taxonomy/term/'. $term->tid;
}
?>Login or register to post comments 