如何在上传后显示未裁剪的图片? 时间:2015-04-20 作者:coolcollegehelpers 正如你所看到的,我上传了这本书的图片。每当我上传图片时,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 结束 文章导航