You are here

function taxonomy_theme in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/taxonomy.module \taxonomy_theme()

Implements hook_theme().

File

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

Code

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