如何在上传后显示未裁剪的图片?

时间:2015-04-20 作者:coolcollegehelpers

enter image description here

正如你所看到的,我上传了这本书的图片。每当我上传图片时,wordpress似乎总是在裁剪它。是否有一个插件或代码,我可以放在那里,它将显示整个图片,而不是裁剪的?

非常感谢您的先进!

1 个回复
SO网友:Trang

您使用的主题是crops上传的图片,但始终有一个保持原始完整大小的图片版本。修改渲染将使用的图片的代码size parameter.例如:

Use: wp_get_attachment_image:
echo wp_get_attachment_image( $attachment->ID, \'full\' );
Or: display post_thumbnail:
echo get_the_post_thumbnail( $post->ID, \'full\' );

\'full\' here means the full size
更多信息:https://codex.wordpress.org/Function_Reference/wp_get_attachment_imagehttps://codex.wordpress.org/Function_Reference/get_the_post_thumbnail

结束

相关推荐

定义`GET_POST_QUALUALY_Images`的大小,它们似乎已调整为150x150

我正在使用get_post_gallery_images 它可以输出150x150的图像。它看起来不需要大小参数,所以我假设它只会显示最大的图像,或者最好是我定义的一个大小。150x150太小了,有没有地方可以声明我想要多大尺寸的画廊图片?例如,我正在做:<?php $gallery = get_post_gallery_images( $post ); foreach ($gallery as $img) { ?> <li><img src