wp_timezone_supported()WP 2.9.0

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

Check for PHP timezone support

No Hooks.

Return

true|false.

Usage

wp_timezone_supported();

Changelog

Since 2.9.0 Introduced.
Deprecated since 3.2.0

wp_timezone_supported() code WP 6.5.2

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

	return true;
}