WC_Product_Grouped::set_childrenpublicWC 1.0

Sets an array of children for the product.

Method of the class: WC_Product_Grouped{}

No Hooks.

Returns

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() code WC 9.9.5

public function set_children( $children ) {
	$this->set_prop( 'children', array_filter( wp_parse_id_list( (array) $children ) ) );
}