ActionScheduler_Abstract_RecurringSchedule::get_first_date()publicWC 1.0

Get the date & time of the first schedule in this recurring series.

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

Хуков нет.

Возвращает

DateTime|null.

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

$ActionScheduler_Abstract_RecurringSchedule = new ActionScheduler_Abstract_RecurringSchedule();
$ActionScheduler_Abstract_RecurringSchedule->get_first_date();

Код ActionScheduler_Abstract_RecurringSchedule::get_first_date() WC 8.7.0

public function get_first_date() {
	return clone $this->first_date;
}