pre_wp_get_https_detection_errors хук-фильтрWP 6.4.0

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_get_https_detection_errors', 'wp_kama_pre_wp_get_https_detection_errors_filter' );

/**
 * Function for `pre_wp_get_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_get_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.

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

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

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

wp_get_https_detection_errors()
pre_wp_get_https_detection_errors
wp-includes/https-detection.php 105
$support_errors = apply_filters( 'pre_wp_get_https_detection_errors', null );

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

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