Walker::unset_children
Unsets all the children for a given top level element.
Method of the class: Walker{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Walker = new Walker(); $Walker->unset_children( $element, $children_elements );
- $element(object) (required)
- The top level element.
- $children_elements(array) (required) (passed by reference — &)
- The children elements.
Changelog
| Since 2.7.0 | Introduced. |
Walker::unset_children() Walker::unset children code WP 7.0
public function unset_children( $element, &$children_elements ) {
if ( ! $element || ! $children_elements ) {
return;
}
$id_field = $this->db_fields['id'];
$id = $element->$id_field;
if ( ! empty( $children_elements[ $id ] ) && is_array( $children_elements[ $id ] ) ) {
foreach ( (array) $children_elements[ $id ] as $child ) {
$this->unset_children( $child, $children_elements );
}
}
unset( $children_elements[ $id ] );
}