gordie Here is an example of meta box for bellow possible mime types ‘image/jpeg’,’image/gif’,’image/png’,’image/bmp’,’image/tiff’,’image/x-icon’ //add meta_box for image mime types only function add_our_attachment_meta(){ $attachment_id = $_REQUEST[‘post’]; $attachment_mime_type = get_post_mime_type($attachment_id); $possible_mime_types = array(‘image/jpeg’,’image/gif’,’image/png’,’image/bmp’,’image/tiff’,’image/x-icon’); if(in_array($attachment_mime_type, $possible_mime_types)){ add_meta_box( ‘custom-attachment-meta-box’, ‘Attachment Extra Details’, ‘our_attachment_meta_box_callback’, ‘attachment’, ‘normal’, ‘low’); } } add_action( ‘admin_init’, ‘add_our_attachment_meta’ ); //callback function of custom metabox function … Read more