1.20.x taxonomy.module taxonomy_term_delete_multiple(array $tids)

Deletes taxonomy terms.

Parameters

$tids: The term ids to be deleted.

File

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

Code

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