# wp_schedule_https_detection()

URL: https://chugunov.pro/api-wordpress/functions/wp_schedule_https_detection/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 5.7.0.

## Сигнатура

```php
wp_schedule_https_detection()
```

## Описание

Планирует Cron-хук для определения поддержки HTTPS.

## Исходный код

Файл: `wp-includes/https-detection.php:165`

```php
* that it was not possible to determine ownership.
 *
 * @since 5.7.0
 * @access private
 *
 * @param string $html Full HTML output string, e.g. from a HTTP response.
 * @return bool|null True/false for whether HTML was generated by this site, null if unable to determine.
 */
function wp_is_local_html_output( $html ) {
```

## История изменений

- 5.7.0 — Introduced.

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/wp_schedule_https_detection/
