1.20.x taxonomy.module taxonomy_term_delete($tid)

Deletes a term.

Parameters

$tid: The term ID.

File

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

Code

function taxonomy_term_delete($tid) {
  taxonomy_term_delete_multiple(array($tid));
}