WC_Abstract_Order::set_date_modified( string|integer|null $date = null )

Set date_modified.


Description Description


Parameters Parameters

$date

(Optional) 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 value: null


Top ↑

Source Source

File: includes/abstracts/abstract-wc-order.php

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

Top ↑

User Contributed Notes User Contributed Notes

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