Создание, продвижение сайтов
40-33-54

Как программно изменить заголовок страницы

17 июня 2024

Замена заголовка

function MY_THEME_preprocess_page_title(&$variables) {
  $route_name = \Drupal::routeMatch()->getRouteName();
  if ($route_name === 'node') {
    $variables['title'] = 'Edit My Account';
  }
}

Замена title

function MY_THEME_preprocess_html(&$variables) {
  $route_name = \Drupal::routeMatch()->getRouteName();
  if ($route_name === 'node') {
    $variables['head_title']['title'] = t('Edit My Account')
  }
}