WC_Coupon::get_date_modified()
Get date_modified
Method of the class: WC_Coupon{}
No Hooks.
Return
WC_DateTime|NULL
. object if the date is set or null if there is no date.
Usage
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_date_modified( $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_date_modified() WC Coupon::get date modified code WC 9.4.2
public function get_date_modified( $context = 'view' ) { return $this->get_prop( 'date_modified', $context ); }