【问题标题】:wordpress - get thumbnail size from thumbnail name/referencewordpress - 从缩略图名称/参考中获取缩略图大小
【发布时间】:2013-02-23 00:43:18
【问题描述】:

我已经设置了一个缩略图像

add_image_size( 'banner_image', 1098, 400, true );

现在注册后我希望能够从参考中获取尺寸,即

get_thumbnail_size( 'banner_image' )
{

}

有没有办法做到这一点?

问候

【问题讨论】:

    标签: wordpress thumbnails


    【解决方案1】:
    global $_wp_additional_image_sizes;
    
    echo $_wp_additional_image_sizes['banner_image']['width'];   // output width
    echo $_wp_additional_image_sizes['banner_image']['height'];  // output height
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-07-24
      相关资源
      最近更新 更多