Drupal 8: Get the raw taxonomy term name.

Profile picture for user Phil Frilling
By Phil Frilling, 30 August, 2016

/**
 * Implements template_preprocess_taxonomy_term().
 */
function THEME_preprocess_taxonomy_term(&$variables) {
  // Add the term name as a variable to use as a class in the twig file.
  $variables['term_name'] = $variables['term']->label();
}

Tags