Modifies gmt_offset for smart timezone handling.
Description
Overrides the gmt_offset option if we have a timezone_string available.
Source
*
* Overrides the gmt_offset option if we have a timezone_string available.
*
* @since 2.8.0
*
* @return float|false Timezone GMT offset, false otherwise.
*/
function wp_timezone_override_offset() {
$timezone_string = get_option( 'timezone_string' );
if ( ! $timezone_string ) {
return false;
}
$timezone_object = timezone_open( $timezone_string );
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |
This is hooked into the
pre_option_gmt_offset
filter.