WP_REST_Server::remove_header( string $key )

Removes an HTTP header from the current response.


Description


Parameters

$key

(string) (Required) Header key.


Top ↑

Source

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

	public function remove_header( $key ) {
		header_remove( $key );
	}

Top ↑

Changelog

Version Description
4.8.0 Introduced.