function taxonomy_title_delete in Taxonomy Title 7
Deletes the term title.
Parameters
$tid: The taxonomy term id of the term to delete.
2 calls to taxonomy_title_delete()
- taxonomy_title_taxonomy_term_delete in ./
taxonomy_title.module - Implements hook_taxonomy_term_delete().
- taxonomy_title_taxonomy_term_update in ./
taxonomy_title.module - Implements hook_taxonomy_term_update().
File
- ./
taxonomy_title.module, line 218 - Enhanced control over the heading tag for the taxonomy term list pages.
Code
function taxonomy_title_delete($tid) {
db_delete('taxonomy_title')
->condition('tid', $tid)
->execute();
}