Remediation Steps
Follow the steps below to remediate this finding on WordPress.
Add the following to your theme's functions.php file or a custom plugin:
add_action('send_headers', function() { header('X-Frame-Options: SAMEORIGIN'); });Alternatively, if using Apache, add to the .htaccess file in the WordPress root:
<IfModule mod_headers.c> Header always set X-Frame-Options "SAMEORIGIN" </IfModule>