我现在正在我的第一个drupal 8站点上工作,我有点被困在试图将类添加到body标记中,这样我就可以使用css添加类了。
在drupal 7中,您可以像"node-4“这样的类,但是我似乎无法让它与drupal 8一起工作,有人能帮我吗?我已经尝试了很多东西,但到目前为止似乎都没有效果。
发布于 2017-04-14 02:10:10
在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();
}
}https://stackoverflow.com/questions/43403323
复制相似问题