send_nosniff_header()

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


Description Description

See also See also


Top ↑

Source Source

File: wp-includes/functions.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.