WC_Customer::set_date_created()publicWC 3.0.0

Set the date this customer was last updated.

Метод класса: WC_Customer{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_Customer = new WC_Customer();
$WC_Customer->set_date_created( $date );
$date(строка|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 their is no date.
По умолчанию: null

Список изменений

С версии 3.0.0 Введена.

Код WC_Customer::set_date_created() WC 8.7.0

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