get_post_mime_type()
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.
Uses: get_post()
No Hooks.
Return
String|false
. The mime type on success, false on failure.
Usage
get_post_mime_type( $post );
- $post(int|WP_Post)
- Post ID or post object.
Default: global $post
Changelog
Since 2.0.0 | Introduced. |
Code of get_post_mime_type() get post mime type WP 5.9.3
function get_post_mime_type( $post = null ) { $post = get_post( $post ); if ( is_object( $post ) ) { return $post->post_mime_type; } return false; }