我期待實施基於CSS樣式的分類術語;特別是對於我想添加當前術語的身體標記。如何使用drupal template.php做基於分類的css樣式?
現在,這裏是我到目前爲止有:
function _phptemplate_variables($hook, $vars = array()) {
global $node;
switch ($hook) {
case 'page': die ('test');
$vars['body_class'] = '';
if (arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
$vars['body_class'] = 'theme'.arg(2);
}
if (arg(0) == 'node' && is_numeric(arg(1))) {
$node = node_load(arg(1));
if (is_array($node->taxonomy)) {
foreach ($node->taxonomy as $term) {
$vars['body_class'] .= 'theme'.$term->tid;
}
}
}
if (drupal_is_front_page()) {
$vars['body_class'] .= ' front';
}
break;
}
return $vars;
}
我覺得代碼是好,但它永遠不會被調用(見我「死」功能);使用簡單的phptemplate引擎和最小的drupal6安裝。
我在這裏錯過了什麼特別的東西?
您是否刷新了緩存? – acm 2011-03-29 13:56:31
yes,thousand times :) – Disco 2011-03-29 14:03:23
function _phptemplate_variables($ hook,$ vars){die('here'); }也永遠不會被執行。 – Disco 2011-03-29 14:03:57