WordPress 是否有任何插件可以让我将额外的元数据附加到图像上?
从 WordPress 的媒体部分,我可以看到我可以编辑
- 标题
- 替代文本
- 标题
- 描述
我需要添加额外的数据,例如快门速度、位置和时间。电影。
描述字段(并解析它)中缺少诸如 title: "bla bla", shutterSpeed: "4"
之类的内容,是否有任何插件可以添加此功能?
对于外行来说输入数据应该很容易。
谢谢!
From the media section in WordPress, I can see that I can edit
- Title
- Alternate text
- Caption
- Description
I need to add extra data, like shutter speed, location & film.
Short of something like title: "bla bla", shutterSpeed: "4"
in the description field (and parsing it), is there any plugin that adds this functionality?
It should be easy enough for a laymen to enter data into.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WordPress 会将其在上传点检索到的任何 EXIF 数据存储到附件元数据数组中(该数组在
postmeta
表中的键_wp_attachment_metadata
下进行序列化)。您可以使用
wp_get_attachment_metadata($attachment_ID)
检索此元数据。要将您自己的字段添加到编辑附件表单,请查看
wp-admin/includes/media.php
中的get_attachment_fields_to_edit()
(第1034 行
自 3.0 起)。您可以过滤
attachment_fields_to_edit
,像这样传回结构化数组;WordPress will store any EXIF data it can retrieve at point-of-upload into the attachment metadata array (which is serialized in the
postmeta
table under the key_wp_attachment_metadata
).You can retrieve this metadata using
wp_get_attachment_metadata($attachment_ID)
.To add your own fields to the edit attachment form, check out
get_attachment_fields_to_edit()
inwp-admin/includes/media.php
(line1034
as of 3.0).You can filter
attachment_fields_to_edit
, passing back a structured array like so;NG Gallery 可以从图像中的 EXIF 数据中提取元数据,并且您还有标题/描述字段
NG Gallery can extract metadata from the EXIF data in the image and you have title/description fields as well