wp_timezone_supported

Definition:
function wp_timezone_supported() {}

Check for PHP timezone support

Defined filters

  • timezone_support
    apply_filters( 'timezone_support', $support )

Source code

function wp_timezone_supported() {

	$support = false;

	if (

		function_exists( 'date_create' ) &&

		function_exists( 'date_default_timezone_set' ) &&

		function_exists( 'timezone_identifiers_list' ) &&

		function_exists( 'timezone_open' ) &&

		function_exists( 'timezone_offset_get' )

	) {

		$support = true;

	}

	return apply_filters( 'timezone_support', $support );

}

4171

No comments yet... Be the first to leave a reply!

Leave a comment