Drupal-取消设置(不包括)所有核心样式表-主题变量覆盖。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal-取消设置(不包括)所有核心样式表-主题变量覆盖。相关的知识,希望对你有一定的参考价值。
Removes the core, and node styles from the $style variable.You most morbably already defined _phptemplate_variables($hook, $vars), in that case just add the two lines there.
_sympal_theme.. is the name of the theme where we use this.
function _phptemplate_variables($hook, $vars) { switch ($hook) { case 'page': $vars['css'] = _sympal_theme_unset_css($vars['css']); $vars['styles'] = drupal_get_css($vars['css']); break; } return $vars; } /** * Unset all module and core styles **/ function _sympal_theme_unset_css($css) { } return $css; }
以上是关于Drupal-取消设置(不包括)所有核心样式表-主题变量覆盖。的主要内容,如果未能解决你的问题,请参考以下文章