get_post_mime_type()
get_post_mime_type( int|WP_Post $post = null ) 根据ID检索附件…
get_post_mime_type( int|WP_Post $post = null )
根据ID检索附件的mime类型。
Retrieve the mime type of an attachment based on the ID.
目录锚点:#说明#参数#返回#源码#笔记
说明(Description)
这个函数可以用于任何post类型,但是对于附件来说它更有意义。
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$post | (int | WP_Post) | 可选 | Post ID或Post对象。默认为全局$post。 |
返回(Return)
(string|false)成功时为mime类型,失败时为false。
源码(Source)
/** * Retrieve the mime type of an attachment based on the ID. * * This function can be used with any post type, but it makes more sense with * attachments. * * @since 2.0.0 * * @param int|WP_Post $ID Optional. Post ID or post object. Default empty. * @return string|false The mime type on success, false on failure. */ function get_post_mime_type( $ID = '' ) { $post = get_post($ID); if ( is_object($post) ) return $post->post_mime_type; return false; }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.0.0 | wp-includes/post.php:874 | 3 | 1 function |
笔记(Notes)
根据给定帖子的MIME类型返回图标图像路径
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!