以数组形式检索帖子缩略图 时间:2012-11-28 作者:Staffan Estberg 如何将帖子缩略图(特色图像)检索为数组使用get\\u post\\u thumbnail(),我在WP文档中注意到有第三个参数,据我所知,可以将其设置为以数组而不是字符串的形式返回值,但我不知道如何返回我想将图像作为数组返回的原因是为了在输出中排除不必要的属性,如“wp post image”等。已解决问题:$image = wp_get_attachment_image_src( get_post_thumbnail_id(), $size); 1 个回复 SO网友:brasofilo 解决方案是使用wp_get_attachment_image_src. 根据法典:$attachment_id = 8; $size = \'full\'; // returns an array $image_attributes = wp_get_attachment_image_src( $attachment_id, $size ); 尽管据说回报是:[0] => url [1] => width [2] => height 第四个元素指示它是完整图像(假)还是中间图像(真):[3] => is_intermediate 结束 文章导航