taxonomy_term_path
modules/taxonomy/taxonomy.module, line 60
- Versions
- 4.7 – 7
taxonomy_term_path($term)
Code
<?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;
}
?> 