Drupal7将Classname添加到body标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal7将Classname添加到body标记相关的知识,希望对你有一定的参考价值。
<?php // Classes for body element. Allows advanced theming based on context // (home page, node of certain type, etc.) if (!$variables['is_front']) { // Add unique class for each page. $path = drupal_get_path_alias($_GET['q']); // Add unique class for each website section. if (arg(0) == 'node') { if (arg(1) == 'add') { $section = 'node-add'; } $section = 'node-' . arg(2); } } $variables['classes_array'][] = drupal_html_class('section-' . $section); } if (theme_get_setting('ivorypearl_wireframes')) { $variables['classes_array'][] = 'with-wireframes'; // Optionally add the wireframes style. } }
以上是关于Drupal7将Classname添加到body标记的主要内容,如果未能解决你的问题,请参考以下文章
反应:仅将主体类添加到 useEffect 挂钩中的某些组件?