WC_Product_Grouped::set_children()
Return the children of this product.
Method of the class: WC_Product_Grouped{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Product_Grouped = new WC_Product_Grouped(); $WC_Product_Grouped->set_children( $children );
- $children(array) (required)
- List of product children.
WC_Product_Grouped::set_children() WC Product Grouped::set children code WC 9.4.2
public function set_children( $children ) { $this->set_prop( 'children', array_filter( wp_parse_id_list( (array) $children ) ) ); }