function media_hacks_attachment_fields_to_edit( $form_fields, $post ){ // get post mime type $type = get_post_mime_type( $post->ID ); // get the attachment path $attachment_path = get_attached_file( $post->ID ); // get image metadata $metadata = wp_read_image_metadata( $attachment_path ); if( 'image/jpeg' == $type ){ if( $metadata ) { $exif_data = array( 'aperture' => 'Aperture', 'camera' => 'Camera', 'created_timestamp' => 'Timestamp', 'focal_length' => 'Focal Length', 'iso' => 'ISO', 'shutter_speed' => 'Exposure Time', 'orientation' => 'Orientation' ); foreach ( $exif_data as $key => $value ) { $exif = $metadata[$key]; $form_fields[$key] = array( 'value' => $exif ? $exif : '', 'label' => __( $value ), 'input' => 'html', 'html' => "ID][$exif]' value='" . $exif . "' /> ); } } } return $form_fields; } add_filter( 'attachment_fields_to_edit', 'media_hacks_attachment_fields_to_edit', 10, 2 );