WP_HTTP_Requests_Response::header( string $key, string $value, bool $replace = true )
Sets a single HTTP header.
Parameters
- $key
-
(Required) Header name.
- $value
-
(Required) Header value.
- $replace
-
(Optional) Whether to replace an existing header of the same name.
Default value: true
Source
File: wp-includes/class-wp-http-requests-response.php
public function header( $key, $value, $replace = true ) {
if ( $replace ) {
unset( $this->response->headers[ $key ] );
}
$this->response->headers[ $key ] = $value;
}
Changelog
Version | Description |
---|---|
WP-4.6.0 | Introduced. |