WP_REST_Request::set_header( string $key, string $value )
Sets the header on request.
Parameters
-
$key
string Required -
Header name.
-
$value
string Required -
Header value, or list of values.
Source
File: wp-includes/rest-api/class-wp-rest-request.php
.
View all references
public function set_header( $key, $value ) {
$key = $this->canonicalize_header_name( $key );
$value = (array) $value;
$this->headers[ $key ] = $value;
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |