wc_format_refund_total()
Make a refund total negative.
Хуков нет.
Возвращает
float
.
Использование
wc_format_refund_total( $amount );
- $amount(float) (обязательный)
- Refunded amount.
Код wc_format_refund_total() wc format refund total WC 9.3.3
function wc_format_refund_total( $amount ) { return $amount * -1; }