WP_REST_Request::add_header( string $key, string $value )

In this article

Appends a header value for the given header.

Parameters

$keystringrequired
Header name.
$valuestringrequired
Header value, or list of values.

Source

public function add_header( $key, $value ) {
	$key   = $this->canonicalize_header_name( $key );
	$value = (array) $value;

	if ( ! isset( $this->headers[ $key ] ) ) {
		$this->headers[ $key ] = array();
	}

	$this->headers[ $key ] = array_merge( $this->headers[ $key ], $value );
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.