function taxonomy_term_delete_multiple

Deletes taxonomy terms.

Parameters

$tids: The term ids to be deleted.

3 calls to taxonomy_term_delete_multiple()

File

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

Code

function taxonomy_term_delete_multiple(array $tids) {
  entity_delete_multiple('taxonomy_term', $tids);
}