내 테마의 template.php 파일에서 다음을 시도했습니다.
function media_preprocess_page(&$vars, $hook) {
if (isset($vars['node']))
{
// If the node type is "blog" the template suggestion will be "html--blog.tpl.php".
$vars['theme_hook_suggestions'][] = 'html__'.$vars['node']->type;
// If the node type is "blog" the template suggestion will be "page--blog.tpl.php".
$vars['theme_hook_suggestions'][] = 'page__'.$vars['node']->type;
// If the node id is "33" the template suggestion will be "page--33.tpl.php".
$vars['theme_hook_suggestions'][] = 'page__'.$vars['node']->nid;
}
//Create page suggestion for first part of url-alias
$url_alias = drupal_get_path_alias($_GET['q']);
$parts = explode('/', $url_alias);
$vars['theme_hook_suggestions'][] = 'page__'.$parts[0].'__alias';
}
이것은 page--nodetype.tpl.php에서는 작동하지만 html에서는 작동하지 않습니다.
노드 유형별로 html.tpl.php 템플리트를 대체해야하는 이유를 물을 수 있습니다. 이 특정 노드에 포함하고 싶지 않은 마크 업이 있기 때문입니다.