1 taxonomy.module | taxonomy_term_show($term) |
Generates an array which displays a term detail page.
Parameters
term: A taxonomy term object.
Return value
A $page element suitable for use by backdrop_render().:
File
- core/
modules/ taxonomy/ taxonomy.module, line 743 - Enables the organization of content into categories.
Code
function taxonomy_term_show($term) {
return taxonomy_term_view_multiple(array($term->tid => $term), 'full');
}