Retrieves the current time as an object using the site’s timezone.
Source
function current_datetime() {
return new DateTimeImmutable( 'now', wp_timezone() );
}
Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |
CARVIEW |
Retrieves the current time as an object using the site’s timezone.
function current_datetime() {
return new DateTimeImmutable( 'now', wp_timezone() );
}
Uses | Description |
---|---|
wp_timezone()wp-includes/functions.php | Retrieves the timezone of the site as a |
Used by | Description |
---|---|
wp_dashboard_recent_posts()wp-admin/includes/dashboard.php | Generates Publishing Soon and Recently Published sections. |
Version | Description |
---|---|
5.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.