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