• Currently WordPress doesn’t import camera manufacturer from EXIF; it imports only the model. So a “Sony DSC-T100” shows up only as “DSC-T100”.

    Please add this to image.php in the next wordpress release to make the camera manufacturer info accessible:

    if (!empty($exif[‘Make’]))
    $meta[‘maker’] = trim( $exif[‘Make’] );

    Thanks

  • The topic ‘Feature Request: Import Camera “Maker” EXIF’ is closed to new replies.