Skip to content

Instantly share code, notes, and snippets.

@NikLP
Created March 28, 2017 15:52
Show Gist options
  • Save NikLP/6670a386d6a1b9600b0fdac95559d1b1 to your computer and use it in GitHub Desktop.
Save NikLP/6670a386d6a1b9600b0fdac95559d1b1 to your computer and use it in GitHub Desktop.
/**
* Implements hook_theme_suggestions_HOOK_alter().
* Courtesy @nicrodgers
*/
function MYTHEME_theme_suggestions_block_alter(array &$suggestions, array $variables) {
if (isset($variables['elements']['content']['#block_content'])) {
$block_content = $variables['elements']['content']['#block_content'];
$suggestions[] = 'block__' . $block_content->bundle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment