send_nosniff_header()
Sends a HTTP header to disable content type sniffing in browsers which support it.
Description
See also
Source
File: wp-includes/functions.php
function send_nosniff_header() {
@header( 'X-Content-Type-Options: nosniff' );
}
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |