function taxonomy_term_delete

Deletes a term.

Parameters

$tid: The term ID.

7 calls to taxonomy_term_delete()

File

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

Code

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