WC_Legacy_Cart::get_order_discount_total()
Устарела с версии 2.3.0 Order discounts (after tax) removed in 2.3.. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Get the total of all order discounts (after tax discounts).
Метод класса: WC_Legacy_Cart{}
Хуков нет.
Возвращает
int
.
Использование
$WC_Legacy_Cart = new WC_Legacy_Cart(); $WC_Legacy_Cart->get_order_discount_total();
Список изменений
Устарела с 2.3.0 | Order discounts (after tax) removed in 2.3. |
Код WC_Legacy_Cart::get_order_discount_total() WC Legacy Cart::get order discount total WC 9.2.3
public function get_order_discount_total() { wc_deprecated_function( 'get_order_discount_total', '2.3' ); return 0; }