Skip to content

Instantly share code, notes, and snippets.

@victorpavlov
Created May 30, 2013 09:21
Show Gist options
  • Save victorpavlov/5676718 to your computer and use it in GitHub Desktop.
Save victorpavlov/5676718 to your computer and use it in GitHub Desktop.
<?php
function MYTHEME_preprocess_node(&$vars) {
if($vars['view_mode'] == 'teaser') {
$vars['theme_hook_suggestions'][] = 'node__' . $vars['node']->type . '__teaser';
$vars['theme_hook_suggestions'][] = 'node__' . $vars['node']->nid . '__teaser';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment