WP_REST_Request::remove_header( string $key )

Removes all values for a header.


Description Description


Parameters Parameters

$key

(string) (Required) Header name.


Top ↑

Source Source

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

	public function remove_header( $key ) {
		$key = $this->canonicalize_header_name( $key );
		unset( $this->headers[ $key ] );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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