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



wp_is_home_url_using_https › WordPress Function

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

Checks whether the current site URL is using HTTPS.



Quellcode

function wp_is_home_url_using_https() {
	return 'https' === wp_parse_url( home_url(), PHP_URL_SCHEME );
}