wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_timezone_override_offset › WordPress Function

Since2.8.0
Deprecatedn/a
wp_timezone_override_offset ( No parameters )
Returns:
  • (float|false) Timezone GMT offset, false otherwise.
Defined at:
Codex:

Modifies gmt_offset for smart timezone handling.

Overrides the gmt_offset option if we have a timezone_string available.


Source

function wp_timezone_override_offset() {
	$timezone_string = get_option( 'timezone_string' );
	if ( ! $timezone_string ) {
		return false;
	}

	$timezone_object = timezone_open( $timezone_string );
	$datetime_object = date_create();
	if ( false === $timezone_object || false === $datetime_object ) {
		return false;
	}

	return round( timezone_offset_get( $timezone_object, $datetime_object ) / HOUR_IN_SECONDS, 2 );
}