所以,我对WP如何存储图像(图像数据)不是很感兴趣,我希望在版本4中有一些改进。x、 但遗憾的是,没有。
当我说图像数据时,我的意思是url, title, caption, alt text, description
您可以在媒体库中更新的数据。
wp_get_attachment_image
仅返回包含此数据的URL
wp_get_attachment_image_src
仅返回url
get_attached_media( \'image\' )
返回一些数据:
public \'post_content\' => string \'This is the description\'
public \'post_title\' => string \'This is the title\'
public \'post_excerpt\' => string \'This is the caption\'
public \'guid\' => string \'http://somesite.com/wp-content/uploads/2015/10/test.jpg\'
在我删除了附件(并删除了图像)之后,再附加另一个图像,
get_attached_media( \'image\' )
返回空。
所以IS 有什么好方法可以获取图像数据吗?