current_datetime()WP 5.3.0

Retrieves the current time as an object using the site's timezone.

Хуков нет.

Возвращает

DateTimeImmutable. Date and time object.

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

current_datetime();

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

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

Код current_datetime() WP 6.5.2

function current_datetime() {
	return new DateTimeImmutable( 'now', wp_timezone() );
}