Drupal 8:将类添加到正文标签中,以便我可以使用 CSS 解决它



我正在我的第一个drupal 8网站上工作,我有点坚持尝试将类添加到body标签中,以便我可以用css解决它。

在 Drupal 7 中,您可以将"node-4"作为一个类,但我似乎无法让它与 Drupal 8 一起工作,有人可以帮助我吗?我已经尝试了很多东西,但到目前为止似乎都没有奏效。

In themename.theme

/**
 * Implements hook_preprocess_html().
 */
function themename_preprocess_html(&$variables) {
  if ($node = Drupal::request()->attributes->get('node')) {
    $variables['attributes']['class'][] = 'page-node-' . $node->id();
  }
}

相关内容

最新更新