In Drupal 8 and Drupal 9, Twig templates don't directly access entity objects like Drupal\taxonomy\Entity\Term
as they are not designed for direct property traversal in the Twig layer. This is primarily for security and architecture reasons—Twig should generally interact with render arrays or variables prepared by preprocess functions, not raw entity objects.
Given the information from your debug output, here’s how you can approach displaying the taxonomy term name in your Twig template:
Step 1: Preprocess Function
Add a preprocess function in your theme's .theme
file to pass the taxonomy term name to the Twig template. Here’s an example of how you might write this function:
/**
* Implements hook_preprocess_HOOK() for views-view-unformatted.html.twig.
*/
function yourtheme_preprocess_views_view_unformatted(&$variables) {
foreach ($variables['rows'] as $id => $row) {
if (isset($row['content']['#row']->_entity)) {
$term = $row['content']['#row']->_entity;
if ($term instanceof \Drupal\taxonomy\Entity\Term) {
// Pass the term name to the Twig template.
$variables['rows'][$id]['term_name'] = $term->getName();
}
}
}
}
In this function, check each row's content for an entity type of Term
and then get the name of the term using the getName()
method, which is the recommended way to access field values.
Step 2: Update the Twig Template
Update your Twig template to use the preprocessed variable:
{% for row in rows %}
{{ row.term_name }}
{% endfor %}
Step 3: Clear Cache
After making changes to .theme
files or Twig templates, always clear the cache to ensure your changes are reflected:
drush cache-rebuild