wp_timezone_supported()WP 2.9.0

Deprecated since 3.2.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Check for PHP timezone support

No Hooks.

Returns

true|false.

Usage

wp_timezone_supported();

Changelog

Since 2.9.0 Introduced.
Deprecated since 3.2.0

wp_timezone_supported() code WP 6.9.1

function wp_timezone_supported() {
	_deprecated_function( __FUNCTION__, '3.2.0' );

	return true;
}