pre_wp_update_https_detection_errors хук-фильтрWP 5.7.0

Устарел с версии 6.4.0. Больше не поддерживается и может быть удален. Используйте d and has been replaced by `pre_wp_get_https_detection_errors`.

Short-circuits the process of detecting errors related to HTTPS support.

Returning a WP_Error from the filter will effectively short-circuit the default logic of trying a remote request to the site over HTTPS, storing the errors array from the returned WP_Error instead.

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

add_filter( 'pre_wp_update_https_detection_errors', 'wp_kama_pre_wp_update_https_detection_errors_filter' );

/**
 * Function for `pre_wp_update_https_detection_errors` filter-hook.
 * 
 * @param null|WP_Error $pre Error object to short-circuit detection, or null to continue with the default behavior.
 *
 * @return null|WP_Error
 */
function wp_kama_pre_wp_update_https_detection_errors_filter( $pre ){

	// filter...
	return $pre;
}
$pre(null|WP_Error)
Error object to short-circuit detection, or null to continue with the default behavior.

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

С версии 5.7.0 Введена.
Устарела с 6.4.0 The wp_update_https_detection_errors filter is no longer used and has been replaced by pre_wp_get_https_detection_errors.

Где вызывается хук

wp_update_https_detection_errors()
pre_wp_update_https_detection_errors
wp-includes/deprecated.php 6003
$support_errors = apply_filters( 'pre_wp_update_https_detection_errors', null );

Где используется хук в WordPress

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