Title: Extra Exif Data
Last modified: August 21, 2016

---

# Extra Exif Data

 *  [sq8bgq](https://wordpress.org/support/users/sq8bgq/)
 * (@sq8bgq)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/extra-exif-data/)
 * Hi,
 * I use HK Exif on my website [http://www.rozenek.com](http://www.rozenek.com) 
   and it is a great plugin – thanks for that 🙂
 * Anyway, I would like to display more exif data. I found information that HK Exif
   supports ONLY exif data which is stored by WP originally (plus extra camera make).
 * Can you please tell me, because I cannot find it ANYWHERE what else exif data
   is stored by default by WP?
 * [https://wordpress.org/plugins/hk-exif-tags/](https://wordpress.org/plugins/hk-exif-tags/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Euthenics](https://wordpress.org/support/users/euthenics/)
 * (@euthenics)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/extra-exif-data/#post-4677728)
 * I would like to know as well.
 *  [Khürt Williams](https://wordpress.org/support/users/khurtwilliams/)
 * (@khurtwilliams)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/extra-exif-data/#post-4677772)
 * Make that the three of us. I discovered that the “copyright” data is supported.
 *  [Khürt Williams](https://wordpress.org/support/users/khurtwilliams/)
 * (@khurtwilliams)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/extra-exif-data/#post-4677773)
 * I found the information via another [plugin.](https://wordpress.org/plugins/thesography/screenshots/)
 * WordPress only stores basic [EXIF](http://www.cipa.jp/std/documents/e/DC-008-2012_E.pdf)
   information in the database.
 * If you go here:
    [https://wordpress.org/plugins/thesography/screenshots/](https://wordpress.org/plugins/thesography/screenshots/)
 * You’ll see the other tags that are possible.
 * I edited the plugin code to include ‘copyright’ and ‘credit’.
 * I added the following code to the hk_exif_tags.php.
 *     ```
       // trying to find artist and copyright information
               if( isset($imgmeta['image_meta']['copyright']) )   $pcopyright = $imgmeta['image_meta']['copyright'];
               else                                               $pcopyright = "";
   
               if( isset($imgmeta['image_meta']['credit']) )   $partist = $imgmeta['image_meta']['credit'];
               else                                               $partist = "";
       //end of that
       ```
   
 * And modified the line that displays the text to:
 *     ```
       $result = $result . 'Image by :'. $partist. '. ' . $pmake . ' ' . $pcamera . ' (' . $pfocal_length . ', ' . $paperature . ', ' . $pshutter . ', ' . $piso . ')';
       ```
   
 * Good luck.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Extra Exif Data’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/hk-exif-tags_c8c6c5.svg)
 * [HK Exif Tags](https://wordpress.org/plugins/hk-exif-tags/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/hk-exif-tags/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/hk-exif-tags/)
 * [Active Topics](https://wordpress.org/support/plugin/hk-exif-tags/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/hk-exif-tags/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/hk-exif-tags/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Khürt Williams](https://wordpress.org/support/users/khurtwilliams/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/extra-exif-data/#post-4677773)
 * Status: not resolved