| Versions | |
|---|---|
| 4.7 – 6 | taxonomy_get_synonym_root($synonym) |
Return the term object that has the given string as a synonym.
modules/
<?php
function taxonomy_get_synonym_root($synonym) {
return db_fetch_object(db_query("SELECT * FROM {term_synonym} s, {term_data} t WHERE t.tid = s.tid AND s.name = '%s'", $synonym));
}
?>