get_term_children( int $term_id, string $taxonomy )
Merges all term children into a single array of their IDs.
Description
This recursive function will merge all of the children of $term into the same array of term IDs. Only useful for taxonomies which are hierarchical.
Will return an empty array if $term does not exist in $taxonomy.
Parameters
- $term_id
-
(Required) ID of term to get children.
- $taxonomy
-
(Required) Taxonomy name.
Return
(array|WP_Error) List of term IDs. WP_Error returned if $taxonomy
does not exist.
Source
File: wp-includes/taxonomy.php
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |