WC_Product_Grouped::get_children()publicWC 1.0

Return the children of this product.

Method of the class: WC_Product_Grouped{}

No Hooks.

Return

Array.

Usage

$WC_Product_Grouped = new WC_Product_Grouped();
$WC_Product_Grouped->get_children( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

WC_Product_Grouped::get_children() code WC 8.7.0

public function get_children( $context = 'view' ) {
	return $this->get_prop( 'children', $context );
}