send_frame_options_header()

Send a HTTP header to limit rendering of pages to same origin iframes.


Description

See also


Top ↑

Source

File: wp-includes/functions.php

function send_frame_options_header() {
	header( 'X-Frame-Options: SAMEORIGIN' );
}

Top ↑

Changelog

Version Description
3.1.3 Introduced.