Changeset 17826 for trunk/wp-includes/functions.php
- Timestamp:
- 05/06/2011 09:28:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r17779 r17826 4535 4535 } 4536 4536 4537 /** 4538 * Send a HTTP header to limit rendering of pages to same origin iframes. 4539 * 4540 * @link https://developer.mozilla.org/en/the_x-frame-options_response_header 4541 * 4542 * @since 3.2.0 4543 * @return none 4544 */ 4545 function send_frame_options_header() { 4546 @header( 'X-Frame-Options: SAMEORIGIN' ); 4547 } 4548 4537 4549 ?>
Note: See TracChangeset
for help on using the changeset viewer.