Constructs a drupal_render() style array from an array of loaded terms.
array $terms: An array of taxonomy terms as returned by taxonomy_term_load_multiple().
string $view_mode: View mode, e.g. 'full', 'teaser'...
string $langcode: (optional) A language code to use for rendering. Defaults to the global content language of the current request.
array An array in the format expected by drupal_render().
function taxonomy_term_view_multiple(array $terms, $view_mode = 'full', $langcode = NULL) {
return entity_view_multiple($terms, $view_mode, $langcode);
}