WC_Product::needs_shipping
Checks if a product needs shipping.
Метод класса: WC_Product{}
Хуки из метода
Возвращает
true|false.
Использование
$WC_Product = new WC_Product(); $WC_Product->needs_shipping();
Код WC_Product::needs_shipping() WC Product::needs shipping WC 10.4.2
public function needs_shipping() {
return apply_filters( 'woocommerce_product_needs_shipping', ! $this->is_virtual(), $this );
}