WC_Coupon::get_amount()
Get coupon amount.
Method of the class: WC_Coupon{}
No Hooks.
Return
String
.
Usage
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_amount( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Changelog
Since 3.0.0 | Introduced. |
WC_Coupon::get_amount() WC Coupon::get amount code WC 9.3.3
public function get_amount( $context = 'view' ) { return wc_format_decimal( $this->get_prop( 'amount', $context ) ); }