| 开发者 | someguy9 |
|---|---|
| 更新时间 | 2026年1月12日 23:11 |
| 捐献地址: | 去捐款 |
| PHP版本: | 5.0.0 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
X-Frame-Options: SAMEORIGIN HTTP header to your site's responses. This header instructs web browsers to prevent other websites from embedding your site within an iframe, effectively blocking clickjacking attempts.X-Frame-Options: SAMEORIGIN HTTP header to prevent clickjackingfunctions.php file:
add_filter('wp_anti_clickjack', '__return_false');
To disable the clickjacking X-Frame-Options HTTP header, use this filter in your theme's functions.php file:
add_filter('wp_anti_clickjack_x_frame_options_header', '__return_false');
/wp-content/plugins/wp-anti-clickjack directory, or install the plugin through the WordPress admin interface.No, WP Anti-Clickjack is designed to have minimal impact on your site's performance. The anti-clickjacking measures are applied efficiently without causing any significant overhead.
Yes, WP Anti-Clickjack is compatible with popular page builders and editors such as Elementor, Divi, WPBakery, Thrive Architect, and more. If you encounter any compatibility issues, please contact me for assistance.
Yes, the plugin provides filters that allow you to disable the clickjacking JavaScript and the X-Frame-Options header when needed. You can use these filters in your theme's functions.php file to fine-tune the plugin's behavior.