WC_Product_Variable::has_dimensions()publicWC 1.0

Returns whether or not the product has dimensions set.

Method of the class: WC_Product_Variable{}

No Hooks.

Return

true|false.

Usage

$WC_Product_Variable = new WC_Product_Variable();
$WC_Product_Variable->has_dimensions();

WC_Product_Variable::has_dimensions() code WC 8.7.0

public function has_dimensions() {
	return parent::has_dimensions() || $this->child_has_dimensions();
}