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 11.0.1
function wc_format_refund_total( $amount ) {
return $amount * -1;
}