选择页面特色图像时,媒体库样式加载不正确?

时间:2022-02-24 作者:Ra3d K

我正在尝试为某些页面设置特色图像,因此当我按select featured images时,媒体库上载UI无法正确加载其自己的样式表(获取图像和搜索工作正常)

这是问题的屏幕截图,问题只出现在某些页面上(使用相同的模板!!!)

enter image description here

What I\'ve tried:

<已检查每个插件停用(&L);激活(无更改)
  • 添加define( \'CONCATENATE_SCRIPTS\', false ); 在里面wp-config.php 文件(无更改)
  • 检查控制台没有错误
  • 在两个不同的设备上使用不同的浏览器(无更改)
    1. 如果您有任何想法,我们将不胜感激,谢谢。

    1 个回复
    最合适的回答,由SO网友:Ra3d K 整理而成

    经过一些搜索,问题出现在包含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