'How to get current date and time in WordPress?
As you may know it's highly recommended by WordPress to theme/plugin authors to don't change the WordPress timezone by PHP functions like date_default_timezone_set.
I addition to that you may receive wrong date and time values when you use php date function because of not setting default timezone by PHP.
I mean you may receive 10 for date('G') while the exact hour is 15 in the selected timezone in WordPress->Settings->General->Timezone option.
So what should you do if you need the correct date and time values in selected timezone for WordPress website?
Solution 1:[1]
You should use current_time function of WordPress instead of PHP date function for getting local date and time in WordPress. It will return correct value for you based on selected timezone in WordPress general options.
For me current_time('G') returns exactly 15 while PHP date('G') returns 10 which is not correct.
Hope it helps somebody since I didn't find related thread in the stackoverflow.
Solution 2:[2]
You can also install a plugin like Shortcode for Current Date to display the current time in your respective time zone. It also provides a great overview of various date and time formats.
Solution 3:[3]
You should use current_time function of WordPress instead of PHP date function for getting local date and time in WordPress. It will return correct value for you based on selected timezone in WordPress general options.
$Date_Time = current_datetime()
Retrieves the current time based on specified type.
current_time( string $type, int|bool $gmt )
Retrieves the current time based on specified type.
Source :
File: wp-includes/functions.php
function current_time( $type, $gmt = 0 ) {
// Don't use non-GMT timestamp, unless you know the difference and really need to.
if ( 'timestamp' === $type || 'U' === $type ) {
return $gmt ? time() : time() + (int) ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
}
if ( 'mysql' === $type ) {
$type = 'Y-m-d H:i:s';
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Hossein |
| Solution 2 | Leo Giesen |
| Solution 3 |
