taxonomy_term_uri($term)
Entity URI callback.
File
- core/modules/taxonomy/taxonomy.module, line 92
- Enables the organization of content into categories.
Code
function taxonomy_term_uri($term) { return new Url('entity.taxonomy_term.canonical', array( 'taxonomy_term' => $term->id(), )); }
Please login to continue.