如何检索当前获取附件的 mime 类型
我正在项目中上传一些 pdf 文件和 .doc/docx 文件。 因此,我在循环内插入了一个链接附件文件,并且工作正常。
但我需要获得一个特定的属性:mimetype。
因此,我需要打印附件 url 和 mimetype,例如
Download file on http:// /domain.com/wp-content/...file.pdf 文件类型:pdf 或 application/pdf
有人可以帮我吗?
顺便说一下,我使用的是自定义主题,而不是默认的 WordPress 主题。
多谢。
弗拉维奥
I'm uploading some pdf files and .doc/docx files in a project.
So, I'm inserting a link attachment file inside the loop and is working fine.
But I need to get a specific attribute: the mimetype.
So, I need to print the attachment url and mimetype, like this
Download file on http://domain.com/wp-content/...file.pdf
File Type: pdf or application/pdf
Could someone help me with this?
By the way, I´m using a custom theme and not the default wordpress theme.
Thanks a lot.
Flávio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个函数可以做到这一点
There is a function for that
如果您确实在循环内处理附件帖子类型,则应该能够访问 post_mime_type:
global $post
可能已经设置,但如果没有,则有必要访问发布数据。If you are indeed dealing with an attachment post type inside the loop, you should be able to access the post_mime_type:
global $post
may already be set, but if not, it is necessary in order to access the post data.