WordPress图片|如何获得裁剪后的图片?

时间:2013-07-07 作者:Nepo Znat

我有一个图像的URL(全尺寸)。在上传过程中,它已经生成了一个较小的版本(我在函数中添加了这个)。当我有完整大小的URL时,如何获得此裁剪版本?

图片不在帖子中,因此我无法使用post-thumbanil().图像位于主页上的滑块中。

1 个回复
最合适的回答,由SO网友:thomascharbit 整理而成

如果您有附件(图像)id,则可以使用:

 wp_get_attachment_image_src( $attachment_id, $size);
其中$size是您想要的较小版本。(参见http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src)

如果您不知道附件id,可以查询数据库中的完整图像大小url:http://pippinsplugins.com/retrieve-attachment-id-from-image-url/

结束

相关推荐

Hover images and Videos

我用这个代码在我的博客上显示视频循环。它工作得很好。作用phpfunction catch_video() { global $post, $posts; $first_vid = \'\'; ob_start(); ob_end_clean(); $output = preg_match_all(\'/<iframe.+src=[\\\'\"]([^\\\'\"]+)[\\\'\"].*>/i\', $post->post_c