WC_Product::child_has_dimensions()publicWC 3.0.0

Does a child have dimensions?

Method of the class: WC_Product{}

No Hooks.

Return

true|false.

Usage

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

Changelog

Since 3.0.0 Introduced.

WC_Product::child_has_dimensions() code WC 8.6.1

public function child_has_dimensions() {
	return false;
}