victorpavlov
10/2/2014 - 1:37 PM

Extend page theme hook suggestion Drupal 7 From https://www.drupal.org/node/1089656

Extend page theme hook suggestion Drupal 7 From https://www.drupal.org/node/1089656

<?php
  function THEME_preprocess_page(&$vars, $hook) { 
    if (isset($vars['node']->type)) {
      // If the content type's machine name is "my_machine_name"
      //the file name will be "page--my-machine-name.tpl.php".
      $vars['theme_hook_suggestions'][] = 'page__' . $vars['node']->type;
    }
  }
?>