由於某種原因wp_get_attachment_image_src返回錯誤的尺寸!不知道爲什麼。該文件存在,圖像大小在設置中註冊。有人有想法嗎?我在這裏瘋了。wp_get_attachment_image_src返回錯誤尺寸
代碼:
# in setup function
add_image_size('thumb', 400, 0, false);
# in template file
$image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumb', false);
結果:
array(4) {
[0]=>
string(115) "http://example.com/wp-content/uploads/2013/06/this-is-an-image-400x331.jpg"
[1]=>
int(150)
[2]=>
int(124)
[3]=>
bool(true)
}