pre_wp_update_https_detection_errors хук-фильтр . WP 5.7.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_update_https_detection_errors', 'filter_function_name_3964' ); function filter_function_name_3964( $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 | Введена. |
Где вызывается хук
pre_wp_update_https_detection_errors
wp-includes/https-detection.php 102
$support_errors = apply_filters( 'pre_wp_update_https_detection_errors', null );