In Drupal terminology, the PHP functions used to extend the functionality of Drupal core modules or third-party modules are called hooks.
I've had success using preprocess page hooks such as: function mytheme_preprocess_page__node_front(&$variables) { ... } and function mytheme_…
drupal-8 drupal-hooks drupal-templates