Automattic\WooCommerce\Admin\Notes

Note::set_date_reminder()publicWC 1.0

Set date admin should be reminded of note. NULL IS allowed

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

Хуков нет.

Возвращает

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

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

$Note = new Note();
$Note->set_date_reminder( $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 there is no date.

Код Note::set_date_reminder() WC 8.7.0

public function set_date_reminder( $date ) {
	if ( is_string( $date ) ) {
		$date = wc_string_to_timestamp( $date );
	}
	$this->set_date_prop( 'date_reminder', $date );
}