1 taxonomy.api.php hook_taxonomy_term_view($term, $view_mode, $langcode)

Act on a taxonomy term that is being assembled before rendering.

The module may add elements to $term->content prior to rendering. The structure of $term->content is a renderable array as expected by backdrop_render().

Parameters

$term: The term that is being assembled for rendering.

$view_mode: The $view_mode parameter from taxonomy_term_view().

$langcode: The language code used for rendering.

See also

hook_entity_view()

Related topics

File

core/modules/taxonomy/taxonomy.api.php, line 238
Hooks provided by the Taxonomy module.

Code

function hook_taxonomy_term_view($term, $view_mode, $langcode) {
  $term->content['my_additional_field'] = array(
    '#markup' => $additional_field,
    '#weight' => 10,
    '#theme' => 'my_module_my_additional_field',
  );
}