<?php
// 在 WordPress 前端添加自定义 CSS,使 iframe 全屏显示
add_action('wp_head', 'make_iframe_fullscreen');
function make_iframe_fullscreen() {
?>
<style>
/* 针对正文中的 iframe 设置全屏样式 */
.entry-content iframe {
width: 100vw !important;
height: 100vh !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
z-index: 9999 !important;
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
/* 确保正文区域不被 iframe 覆盖时产生滚动条 */
.entry-content {
position: relative;
}
</style>
<?php
}
?>