Skip to content

Instantly share code, notes, and snippets.

@Aeotrin
Aeotrin / breadcrumb-cache.theme
Created July 20, 2016 18:57
Drupal 8 - Breadcrumb Preprocess and Cache
function theme_preprocess_breadcrumb(&$variables) {
if (($node = \Drupal::routeMatch()->getParameter('node')) && $variables['breadcrumb']) {
$variables['breadcrumb'][] = [
'text' => $node->getTitle()
];
$variables['#cache']['contexts'][] = 'url.path';
}
}