get_post_mime_type() WP 1.0
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.
Works based on: 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.6
function get_post_mime_type( $post = null ) {
$post = get_post( $post );
if ( is_object( $post ) ) {
return $post->post_mime_type;
}
return false;
}