WC_Product::is_shipping_taxable()
Returns whether or not the product shipping is taxable.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
true|false
.
Использование
$WC_Product = new WC_Product(); $WC_Product->is_shipping_taxable();
Код WC_Product::is_shipping_taxable() WC Product::is shipping taxable WC 9.3.3
public function is_shipping_taxable() { return $this->needs_shipping() && ( $this->get_tax_status() === 'taxable' || $this->get_tax_status() === 'shipping' ); }