Skip to main content

Drupal 8: Add view mode suggestion for taxonomy terms.

  1. /**
  2.  * Implements hook_theme_suggestions_alter().
  3.  */
  4. function THEME_theme_suggestions_alter(&$suggestions, $variables, $hook) {
  5.   switch ($hook) {
  6.     case 'taxonomy_term':
  7.       // Add a view mode suggestion for taxonomy terms.
  8.       $suggestions[] = $hook . '__' . $variables['elements']['#view_mode'];
  9.     break;
  10.   }
  11. }


Comments