theme_taxonomy_term_select
Definition
theme_taxonomy_term_select($element)
modules/taxonomy/taxonomy.module, line 1056
Description
Format the selection field for choosing terms (by deafult the default selection field is used).
Related topics
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
Code
<?php
function theme_taxonomy_term_select($element) {
return theme('select', $element);
}
?> 