1440x1440的大图像尺寸无法拉出2倍的2880x2880图像

时间:2020-06-19 作者:Matthew t Down

我已经在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); 

enter image description here

1 个回复
SO网友:Rod

检查三件事:

您添加了吗add_theme_support(\'post-thumbnails\');?

上传的图像是否大于2880px x 2880px?

你已经再生了吗all 缩略图,包括现有的?。

指第二个,如果图像不是;“合适”;对于大小,WordPress不会制作缩略图,因为它不能。例如,如果您上载一幅图像,比如1200x600,并且您的缩略图大小可以创建1600px宽的图像,WordPress不会创建该缩略图。

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();