如何获得真实的缩略图大小?

时间:2015-12-17 作者:Pikk

我正在努力找到帖子的真实缩略图大小。

在过去几年的博客中,我上传了600像素宽的图片(和缩略图)。起初,它们甚至更小。在过去几年中,它们的宽度为1000px。

我试图找到一个解决方案,以便正确使用以下内容Rich Snippets for Articles:

知道不同的帖子可以有不同大小的缩略图,我如何才能得到缩略图的真实大小?

是吗wp_get_attachment_image_src? 如何使用它?

谢谢

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

wp_get_attachment_metadata - 检索附件ID的附件元字段。

$image_meta = wp_get_attachment_metadata( $attachment_id, $unfiltered );
正如你所看到的width 十、height 嵌套在中sizes 每种尺寸。

Array
   (
       [width] => 2400
       [height] => 1559
       [file] => 2011/12/press_image.jpg
       [sizes] => Array
           (
               [thumbnail] => Array
                   (
                       [file] => press_image-150x150.jpg
                       [width] => 150
                       [height] => 150
                       [mime-type] => image/jpeg
                   )
               [medium] => Array
                   (
                       [file] => press_image-4-300x194.jpg
                       [width] => 300
                       [height] => 194
                       [mime-type] => image/jpeg
                   )
               [large] => Array
                   (
                       [file] => press_image-1024x665.jpg
                       [width] => 1024
                       [height] => 665
                       [mime-type] => image/jpeg
                   )
               [post-thumbnail] => Array
                   (
                       [file] => press_image-624x405.jpg
                       [width] => 624
                       [height] => 405
                       [mime-type] => image/jpeg
                   )
           )
       [image_meta] => Array
           (
               [aperture] => 5
               [credit] => 
               [camera] => Canon EOS-1Ds Mark III
               [caption] => 
               [created_timestamp] => 1323190643
               [copyright] => 
               [focal_length] => 35
               [iso] => 800
               [shutter_speed] => 0.016666666666667
               [title] => 
           )
   )

相关推荐