经过一些搜索,问题出现在包含ACF块的页面中
ACF插件与最新的WP 5.9.1不兼容
发布更新之前的临时修复:
1-在您的functions.php 文件添加以下行:
function acf_fix_preload_path( $preload_paths ) {
global $post;
$rest_path = rest_get_route_for_post( $post );
$remove_path = add_query_arg( \'context\', \'edit\', $rest_path );
return array_filter(
$preload_paths,
function( $url ) use ( $remove_path ) {
return $url !== $remove_path;
});}
add_filter( \'block_editor_rest_api_preload_paths\', \'acf_fix_preload_path\', 10, 1 );
Or回滚到WordPress的早期版本,如5.9