我创建了一个模板 html-landing.tpl.php ,并尝试将其包含在我的template.php enter code here
函数myfuntion_preprocess_html(& $ variables,$ hook){
$ node = menu_get_object();
if($ node-> nid == 60){
$variables['theme_hook_suggestions'][] = 'html-landing';
} }
调用代码但使用的模板是标准的html.tpl.php。
有什么想法吗?
答案 0 :(得分:0)
您是否尝试使用下划线而非破折号?
我会选择这样的事情:
function myfunction_preprocess_html(&$variables, $hook) {
$node = menu_get_object();
if ($node && $node->nid == 60) {
$variables['theme_hook_suggestions'][] = 'html_landing';
}
}
的更多详情