1 taxonomy.module | taxonomy_get_children($tid, $vid = 0) |
Legacy wrapper to load the children of a TID.
Do not call this function, use taxonomy_term_load_children() instead.
Deprecated
since 1.0.0
See also
https://docs.backdropcms.org/node/41635
File
- core/
modules/ taxonomy/ taxonomy.module, line 1323 - Enables the organization of content into categories.
Code
function taxonomy_get_children($tid, $vid = 0) {
watchdog_deprecated_function('taxonomy', __FUNCTION__);
return taxonomy_term_load_children($tid, $vid = 0);
}