如何防止 the_post_thumbnail() 溢出?

发布于 2024-12-10 02:29:22 字数 129 浏览 0 评论 0原文

我不想设置这个

the_post_thumbnail( array(100,100) ); 

,因为它输出给我一个固定大小的图像,但我想获得最大图像大小,显然具有正确的宽高比。

I don't want set this

the_post_thumbnail( array(100,100) ); 

because it output me a fixed size image, but I want obtain max image size, obviously with correct aspect ratio.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红颜悴 2024-12-17 02:29:22

我相信你想要这个:

<?php the_post_thumbnail( "full" ); ?>

除了指定尺寸之外,还有多个关键字,例如“thumbnail”,“medium”,“large”和“full”,它们可以让你获得不同的预制尺寸。您还可以使用注册自己的图像尺寸,

<?php add_image_size( $name, $width, $height, $crop ); ?>

然后每次上传图像时它也会裁剪为该尺寸

I believe you want this:

<?php the_post_thumbnail( "full" ); ?>

In addition to specifying a size, there are also multiple keywords such as "thumbnail", "medium", "large" and "full" which get you different premade sizes. You can also register your own image size using

<?php add_image_size( $name, $width, $height, $crop ); ?>

Then every time you upload an image it will crop to that size as well

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文