wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_is_https_supported › WordPress Function

Seit5.7.0
Veraltetn/v
wp_is_https_supported ( Keine Parameter )
Gibt zurück:
  • (bool) True if HTTPS is supported, false otherwise.
Definiert in:
Codex:

Checks whether HTTPS is supported for the server and domain.

This function makes an HTTP request through wp_get_https_detection_errors() to check for HTTPS support. As this process can be resource-intensive, it should be used cautiously, especially in performance-sensitive environments, to avoid potential latency issues.


Quellcode

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

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