WC_Abstract_Order::set_date_modified()publicWC 1.0

Set date_modified.

Method of the class: WC_Abstract_Order{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Abstract_Order = new WC_Abstract_Order();
$WC_Abstract_Order->set_date_modified( $date );
$date(string|int|null)
UTC timestamp, or ISO 8601 DateTime. If the DateTime string has no timezone or offset, WordPress site timezone will be assumed. Null if there is no date.
Default: null

WC_Abstract_Order::set_date_modified() code WC 8.7.0

public function set_date_modified( $date = null ) {
	$this->set_date_prop( 'date_modified', $date );
}