send_nosniff_header()

Send 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

Changelog
Version Description
WP-3.0.0 Introduced.