_get_term_children


_get_term_children ( $term_id, $terms, $taxonomy, $ancestors = array() )

Access:
  • private
Parameters:
  • (int) term_id The ancestor term: all returned terms should be descendants of `$term_id`.
  • (array) terms The set of terms - either an array of term objects or term IDs - from which those that are descendants of $term_id will be chosen.
  • (string) taxonomy The taxonomy which determines the hierarchy of the terms.
  • (array) ancestors Optional. Term ancestors that have already been identified. Passed by reference, to keep track of found terms when recursing the hierarchy. The array of located ancestors is used to prevent infinite recursion loops. For performance, `term_ids` are used as array keys, with 1 as value. Default empty array.
Returns:
  • (array|WP_Error) The subset of $terms that are descendants of $term_id.
Defined at:

Description

Gets the subset of $terms that are descendants of $term_id.If `$terms` is an array of objects, then _get_term_children() returns an array of objects. If `$terms` is an array of IDs, then _get_term_children() returns an array of IDs.

Related Functions

get_term_children, get_category_children, get_children, get_page_children, get_term_field

Top Google Results

User discussions

wpseek mobile