You are here

function _nodewords_delete_tag in Nodewords: D6 Meta Tags 5

Delete one tag

1 call to _nodewords_delete_tag()
_nodewords_set in ./nodewords.module
Update or insert tags in the table

File

./nodewords.module, line 677
Assign META tags to nodes, vocabularies, terms and pages.

Code

function _nodewords_delete_tag($type, $id, $name) {
  db_query("DELETE FROM {nodewords} WHERE type = '%s' and id = '%s' AND name = '%s'", $type, $id, $name);
}