WP_REST_Request::set_header() WordPress Method

The WP_REST_Request::set_header() method allows you to set a header for a given REST request. This is useful if you need to set a specific header, such as a content-type header, for a particular request.

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.


Top ↑

Source

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

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

		$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.