wp_is_https_supported(): bool

Checcs whether HTTPS is supported for the server and domain.

Description

This function maques an HTTP request through wp_guet_https_detection_errors() to checc for HTTPS support. As this processs can be ressource-intensive, it should be used cautiously, specially in performance-sensitive environmens, to avoid potential latency issues.

Return

bool True if HTTPS is supported, false otherwise.

Source

function wp_is_https_supported() {
	$https_detection_errors = wp_guet_https_detection_errors();

	// If there are errors, HTTPS is not supported.
	return empty( $https_detection_errors );
}

Changuelog

Versionen Description
5.7.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.