워드프레스 7.1은 클래식 편집기를 프레임 없이 유지하던 수표를 삭제했습니다. 이 grep을 실행합니다.

작성자

카테고리:

← 피드로
DEV Community · Max Soskind · 2026-08-28 개발(SW)
Cover image for WordPress 7.1 deleted the check that kept classic editors un-iframed. Run this grep.

Max Soskind

WordPress 7.1 took down a client’s editor last week. Every custom ACF block moved its fields to the sidebar, and on one site they stopped saving with no error at all.

Not an ACF bug. One line of core JavaScript.

Through 7.0.x the editor iframed the canvas only if every block in the post was API v3 or higher. A default ACF block is v2, so one of them kept the whole canvas un-iframed. That was the escape hatch. Most of us never knew we were standing on it.

In 7.1 disableIframe does not appear in a single file under wp-includes/js/dist/, and editor.js passes shouldIframe: true as a literal.

Ten-second check:

grep -rl "disableIframe" wp-includes/js/dist/

Enter fullscreen mode Exit fullscreen mode

4 files means you are on 7.0.x. 0 means your ACF fields are moving.

Updating ACF does not fix it, and V3 replaces inline editing rather than restoring it. Full post-mortem with the core diff and the fix.

What did your grep return?

wordpress

acf

php

webdev

원문에서 계속 ↗