wc_format_refund_total( float $amount )

Make a refund total negative.


Description Description


Parameters Parameters

$amount

(Required) Refunded amount.


Top ↑

Return Return

(float)


Top ↑

Source Source

File: includes/wc-formatting-functions.php

function wc_format_refund_total( $amount ) {
	return $amount * -1;
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.