id summary reporter owner description type status priority milestone component version severity resolution keywords cc focuses 42451 Fix WordPress UTC Time not correct issue taojing10 "in wp-includes/functions.php, look for {{{ case 'timestamp': return ( $gmt ) ? time() : time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); }}} change to {{{ case 'timestamp': //return ( $gmt ) ? time() : time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); return ( $gmt ) ? strtotime(gmdate('Y-m-d H:i:s')) : strtotime(gmdate('Y-m-d H:i:s')) + ( get_option( 'gmt_offset' ) * 3600 ); }}} This issue because of php timestamp function." defect (bug) closed normal Date/Time 4.8.3 normal worksforme reporter-feedback