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



wp_is_using_https › WordPress Function

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

Checks whether the website is using HTTPS.

This is based on whether both the home and site URL are using HTTPS.


Quellcode

function wp_is_using_https() {
	if ( ! wp_is_home_url_using_https() ) {
		return false;
	}

	return wp_is_site_url_using_https();
}