我已经创建了模板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。
有任何想法吗?