WC_Customer::get_date_modified()publicWC 3.0.0

Return the date this customer was last updated.

Method of the class: WC_Customer{}

No Hooks.

Return

WC_DateTime|null. object if the date is set or null if there is no date.

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->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_Customer::get_date_modified() code WC 8.6.1

public function get_date_modified( $context = 'view' ) {
	return $this->get_prop( 'date_modified', $context );
}