WC_Product::needs_shipping
Checks if a product needs shipping.
Method of the class: WC_Product{}
Hooks from the method
Returns
true|false.
Usage
$WC_Product = new WC_Product(); $WC_Product->needs_shipping();
WC_Product::needs_shipping() WC Product::needs shipping code WC 10.3.6
public function needs_shipping() {
return apply_filters( 'woocommerce_product_needs_shipping', ! $this->is_virtual(), $this );
}