Guest User

Untitled

a guest
Oct 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /*
  2. * Custom
  3. * it is a content type
  4. * virtual_office_4
  5. */
  6.  
  7. function colourise_preprocess_page(&$vars, $hook) {
  8. if (isset($vars['node'])) {
  9. // If the node type is "blog" the template suggestion will be "page-blog.tpl.php".
  10. $vars['template_files'][] = 'page-'. str_replace('_', '-', $vars['node']->type);
  11. }
  12. }
Add Comment
Please, Sign In to add comment