WC_Legacy_Coupon::apply_before_tax()publicWC 1.0

Check if coupon needs applying before tax.

Метод класса: WC_Legacy_Coupon{}

Хуков нет.

Возвращает

true|false.

Использование

$WC_Legacy_Coupon = new WC_Legacy_Coupon();
$WC_Legacy_Coupon->apply_before_tax();

Код WC_Legacy_Coupon::apply_before_tax() WC 8.7.0

public function apply_before_tax() {
	wc_deprecated_function( 'WC_Coupon::apply_before_tax', '3.0' );
	return true;
}