WP_REST_Request::remove_header( string $key )

Removes all values for a header.


Parameters

$key string Required
Header name.

Top ↑

Source

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

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


Top ↑

Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes

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