如何检索当前获取附件的 mime 类型

发布于 2024-11-03 01:54:25 字数 389 浏览 0 评论 0原文

我正在项目中上传一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谜兔 2024-11-10 01:54:25

有一个函数可以做到这一点

echo get_post_mime_type();

There is a function for that

echo get_post_mime_type();
浅黛梨妆こ 2024-11-10 01:54:25

如果您确实在循环内处理附件帖子类型,则应该能够访问 post_mime_type:

global $post;
$mime_type = $post->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;
$mime_type = $post->post_mime_type;

global $post may already be set, but if not, it is necessary in order to access the post data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文