Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markconroy/9daa7cc8ee95cbd87e19aef181afefb2 to your computer and use it in GitHub Desktop.
Save markconroy/9daa7cc8ee95cbd87e19aef181afefb2 to your computer and use it in GitHub Desktop.
function THEMENAME_theme_suggestions_block_alter(array &$suggestions, array $variables) {
if (isset($variables['elements']['content']['#block_content'])) {
$suggestions[] = 'block__' . $variables['elements']['content']['#block_content']->bundle();
}
}
@maxplus
Copy link

maxplus commented Apr 5, 2018

Thanks, works great!

@heartdriven
Copy link

Thanks @markconroy, that was exactly what I needed!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment