WC_Product::has_weight
Returns whether or not the product has weight set.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
true|false.
Использование
$WC_Product = new WC_Product(); $WC_Product->has_weight();
Код WC_Product::has_weight() WC Product::has weight WC 10.8.1
public function has_weight() {
return $this->get_weight() && ! $this->get_virtual();
}