WC_Coupon::get_description
Get coupon description.
Method of the class: WC_Coupon{}
No Hooks.
Returns
String.
Usage
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_description( $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_description() WC Coupon::get description code WC 10.5.0
public function get_description( $context = 'view' ) {
return $this->get_prop( 'description', $context );
}