01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 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 ); |