如何在wordpress中基于缩略图获取最大的图像

时间:2017-05-04 01:09:53

标签: wordpress woocommerce

我拥有图片缩略图的URL访问权限。现在,我想基于URL上的缩略图获得最大的图像,但我无法找到这个最大的图像。

我检查了wordpress图像尺寸,发现最大的图像是1024x1024。我的形象是:

www.domain.com/wp-content/uploads/2017-04-sample-image-370x370.jpg

我尝试将维度更改为:

www.domain.com/wp-content/uploads/2017-04-sample-image-1024x1024.jpg

但是,它并没有像我预期的那样奏效。此外,我搜索了产品和媒体库中的图像名称,但无法找到它。

有办法吗?

1 个答案:

答案 0 :(得分:0)

结帐the_post_thumbnail()。它允许您指定所需的大小:

https://developer.wordpress.org/reference/functions/the_post_thumbnail/

// without parameter -> Post Thumbnail (as set by theme using set_post_thumbnail_size())
the_post_thumbnail();

the_post_thumbnail('thumbnail');       // Thumbnail (default 150px x 150px max)
the_post_thumbnail('medium');          // Medium resolution (default 300px x 300px max)
the_post_thumbnail('large');           // Large resolution (default 640px x 640px max)
the_post_thumbnail('full');            // Original image resolution (unmodified)

the_post_thumbnail( array(100,100) );  // Other resolutions

来源例如:https://codex.wordpress.org/Post_Thumbnails