MYTHEME_preprocess_html没有开火

时间:2015-01-27 07:11:33

标签: drupal drupal-7

我正在尝试在我的subtheme的template.php中使用template_preprocess_html钩子,而且它没有被触发。

function testtheme_preprocess_html(&$vars) {
  dpm($vars);
  error_log('here');
  $vars['classes_array'][] = 'testclass';
}

dpm没有打印任何内容,error_log没有在日志中打印任何内容,并且正文类没有受到影响,因此看起来该函数没有运行。

template.php中的其他钩子正在工作,例如:

function testtheme_page_alter(&$page) {
  unset($page['page_top']['toolbar']);
}

有什么想法?提前谢谢!

0 个答案:

没有答案