the_post_thumbnail() 不带比例
是否可以告诉 WordPress 显示 the_post_thumbnail() 而不显示比例。
我需要宽度和高度正是我想要的
the_post_thumbnail(array(350,350));
如果图像大于高度,它只会将高度设置为 350px,并忽略我设置为 350 的宽度。
我怎样才能破解这个?
Is it possible to tell Wordpress to show the_post_thumbnail() without the proportion rate.
I need what the width and height to be exactly what I want
the_post_thumbnail(array(350,350));
If the image is larger than the height, it will only put the height to 350px and ignore the width that i've set to 350 too.
How could I hack this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用此处解释的 timthumb 方法即可:
http://www.binarymoon.co.uk/demo/timthumb-basic/
效果很好,将 timthumb.php 复制到正确的 WP 主题目录后,您可以准确地执行所需的操作。
只需传递源图像和最终裁剪图像的确切尺寸的 hxw,如下所示:
timthumb.php?src=castle1.jpg&h=350&w=350
通过上面的链接提供说明和示例。
祝你好运!!
马塞卢斯
Just use the timthumb method explained here:
http://www.binarymoon.co.uk/demo/timthumb-basic/
Works great and will let you do exactly what you need after copying the timthumb.php into the proper WP Theme directory.
Just pass your source image and the h x w of the exact size of your final cropped image, like so:
timthumb.php?src=castle1.jpg&h=350&w=350
Instructions and examples are provided by following the above link.
Good Luck!!
Marcelous
$size 是一个可选参数,所以这样做应该没有问题
the_post_thumbnail();
The $size is an optional parameter so there should be nothing wrong with doing
the_post_thumbnail();