By admin , 6 January, 2025 Change <title> tag programmatically /** * Implements hook_preprocess_HOOK(). */ function MYMODULE_preprocess_html(&$variables) { $variables['head_title']['title'] = 'new title'; } Tags title preprocess
By admin , 1 March, 2023 Change page title (preprocess) /** * Implements hook_preprocess_HOOK(). */ function EXAMPLE_preprocess_page_title(&$variables) { $current_path = \Drupal::service('path.current')->getPath(); if ($current_path == '/user/login') { $variables['title'] = ' Tags title preprocess