/** * Implements hook_taxonomy_term_view_alter(). */ function {{ machine_name }}_taxonomy_term_view_alter(&$build) { if ($build['#view_mode'] == 'full' && isset($build['an_additional_field'])) { // Change its weight. $build['an_additional_field']['#weight'] = -10; } // Add a #post_render callback to act on the rendered HTML of the term. $build['#post_render'][] = 'my_module_node_post_render'; }