current_datetime()
Retrieves the current time as an object using the site's timezone.
Хуков нет.
Возвращает
DateTimeImmutable. Date and time object.
Использование
current_datetime();
Список изменений
| С версии 5.3.0 | Введена. |
Код current_datetime() current datetime WP 6.8.3
function current_datetime() {
return new DateTimeImmutable( 'now', wp_timezone() );
}