ノードタイプごとにhtml.tpl.phpをオーバーライドする


17

テーマの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';  
}

これはページ--nodetype.tpl.phpで機能しますが、html--nodetype.tpl.phpでは機能しません

ノードタイプごとにhtml.tpl.phpテンプレートをオーバーライドする必要がある理由を尋ねているかもしれません。これは、この特定のノードに含めたくないマークアップがあるためです。

回答:


28

前処理関数の名前は、処理中のテーマ/テンプレートに基づいています。html.tpl.phpファイルを前処理するには、以下を使用する必要がありますhook_preprocess_html()

function media_preprocess_html(&$vars) {
  $node = menu_get_object();

  if ($node && $node->nid) {
    $vars['theme_hook_suggestions'][] = 'html__' . $node->type;
  }
}

3

@Cliveアプローチは非常にスマートです。

html.tpl.phpファイルで、あなたはあなたから扱っているコンテンツタイプ読み取ることができたときにも注意を行う$variables['classes']あなたのような何かを与えるだろう、html not-front not-logged-in no-sidebars page-node page-node- page-node-5638 node-type-CONTENT-TYPE-NAME

これにより、html.tpl.phpファイルの動作を次のように変更できます。

if (strpos($variables['classes'],'node-type-YOUR-CONTENT-TYPE') == true ) {
  echo 'Do something special  for YOUR-CONTENT-TYPE ';
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.