wp_is_home_url_using_https()WP 5.7.0

Checks whether the current site URL is using HTTPS.

Хуков нет.

Возвращает

true|false. True if using HTTPS, false otherwise.

Использование

wp_is_home_url_using_https();

Заметки

Список изменений

С версии 5.7.0 Введена.

Код wp_is_home_url_using_https() WP 6.6.2

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