wp_safe_remote_head()
Retrieve the raw response from a safe HTTP request using the HEAD method.
This function is ideal when the HTTP request is being made to an arbitrary URL. The URL is validated to avoid redirection and request forgery attacks.
Хуков нет.
Возвращает
Массив|WP_Error
. The response or WP_Error on failure.
Использование
wp_safe_remote_head( $url, $args );
- $url(строка) (обязательный)
- URL to retrieve.
- $args(массив)
- Request arguments.
По умолчанию: empty array
Заметки
- Смотрите: wp_remote_request() For more information on the response array format.
- Смотрите: WP_Http::request() For default arguments information.
Список изменений
С версии 3.6.0 | Введена. |
Код wp_safe_remote_head() wp safe remote head WP 6.2
function wp_safe_remote_head( $url, $args = array() ) { $args['reject_unsafe_urls'] = true; $http = _wp_http_get_object(); return $http->head( $url, $args ); }