wc_send_frame_options_header()
When loading sensitive checkout or account pages, send a HTTP header to limit rendering of pages to same origin iframes for security reasons.
Description Description
Can be disabled with: remove_action( ‘template_redirect’, ‘wc_send_frame_options_header’ );
Source Source
File: includes/wc-template-functions.php
function wc_send_frame_options_header() { if ( ( is_checkout() || is_account_page() ) && ! is_customize_preview() ) { send_frame_options_header(); } }
Changelog Changelog
Version | Description |
---|---|
2.3.10 | Introduced. |