send_nosniff_header()

Send a HTTP header to disable content type sniffing in browsers which support it.


Description

See also


Top ↑

Source

File: wp-includes/functions.php

function send_nosniff_header() {
	header( 'X-Content-Type-Options: nosniff' );
}

Top ↑

Changelog

Version Description
3.0.0 Introduced.