/** * Implements hook_node_view_alter(). */ function {{ machine_name }}_node_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 node. $build['#post_render'][] = 'my_module_node_post_render'; }