You are here

function taxonomy_theme in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/taxonomy.module \taxonomy_theme()
  2. 6 modules/taxonomy/taxonomy.module \taxonomy_theme()
  3. 7 modules/taxonomy/taxonomy.module \taxonomy_theme()
  4. 9 core/modules/taxonomy/taxonomy.module \taxonomy_theme()

Implements hook_theme().

File

core/modules/taxonomy/taxonomy.module, line 52
Enables the organization of content into categories.

Code

function taxonomy_theme() {
  return [
    'taxonomy_term' => [
      'render element' => 'elements',
    ],
  ];
}