WP_REST_Request::add_header() WordPress Method

The add_header() method is used to add a new HTTP header to a WP_REST_Request object. The header will be sent along with the rest of the headers when the request is made.

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

Appends a header value for the given header.


Parameters

$key

(string)(Required)Header name.

$value

(string)(Required)Header value, or list of values.


Top ↑

Source

File: wp-includes/rest-api/class-wp-rest-request.php

	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 );
	}


Top ↑

Changelog

Changelog
VersionDescription
4.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.