WC_Product::get_children()publicWC 1.0

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

Метод класса: WC_Product{}

Хуков нет.

Возвращает

Массив. of IDs

Использование

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

Код WC_Product::get_children() WC 8.7.0

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