WP_REST_Server::remove_header( string $key )
Removes an HTTP header from the current response.
Parameters
-
$key
string Required -
Header key.
Source
File: wp-includes/rest-api/class-wp-rest-server.php
.
View all references
public function remove_header( $key ) {
header_remove( $key );
}
Changelog
Version | Description |
---|---|
4.8.0 | Introduced. |