WC_Product::get_children()publicWC 1.0

Returns the children IDs if applicable. Overridden by child classes.

Method of the class: WC_Product{}

No Hooks.

Return

Array. of IDs

Usage

$WC_Product = new WC_Product();
$WC_Product->get_children();

WC_Product::get_children() code WC 8.7.0

public function get_children() {
	return array();
}