我已经在Wordpress上将大图像大小更新为1440px x x 1440px,但是它只拉2048个2x。我创建了一个2倍大小的2880x2880,并将2048更新为2880x2880,但当我这样做时,它不再显示视网膜大小。
到目前为止我已经检查过的事情:图片是由Wordpress上传后生成的。我已经使用指定的过滤器对自5.3版以来设置的新的大图像限制进行了处理。除了“重新生成图像”插件外,我没有lazyload插件或其他操作图像的插件
这都在Wordpress和Gutenberg的标准图像块内
我不知道还能做什么。
// Image threshold removal
add_filter( \'big_image_size_threshold\', \'__return_false\' );
/// UPDATE IMAGE SIZES
//LARGE
update_option( \'large_size_w\', 1440 );
update_option( \'large_size_h\', 1440 );
//MEDIUM LARGE
update_option( \'medium_large_size_w\', 1350 );
update_option( \'medium_large_size_h\', 1350 );
//MEDIUM
update_option(\'medium_size_w\', 675);
update_option(\'medium_size_h\', 675);
//THUMBNAIL
update_option(\'thumbnail_size_w\', 320);
update_option(\'thumbnail_size_h\', 320);
//2048x2048
add_image_size( \'2048x2048\', 2880, 2880);