=== Plugin Name === Contributors: eclipticcreations Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4274157 Tags: gallery, photo, image, exif Requires at least: 2.7 Tested up to: 2.7.1 Stable tag: 1.0 Extract EXIF information when using the gallery shortcode. == Description == Extract EXIF information when using the gallery shortcode. This is specifically for those without access to the php_exif extension on their servers. Style by editing gallery-exif-reader.css. Debug by uncommenting add_filter('the_content', 'ec_exif_reader_debug', 1); in gallery-exif-reader.php. == Installation == 1. Upload folder `gallery-exif-reader` to the `/wp-content/plugins/` directory or install the zip file through the dashboard 2. Activate the plugin through the 'Plugins' menu in WordPress. Works out of the box. == Frequently Asked Questions == = The data isn't displaying. I use an attachment.php or image.php file. = Just add `` after the image dispaying code in your file. = Can I display data other than the default? = Uncomment `//add_action('loop_start', 'ec_exif_reader_debug', 1)` The available data will display in an array at the top of the page. If it doesn't, add this to the top of the page: `` Choose your data then add it to the list in the `gallery-exif-reader.php` file, in this form: 1. `$output .= "
  • Aperture " . $exif_array['SubIFD']['ApertureValue'] . "
  • \n";` 2. `echo "
  • Aperture " . $exif_array['SubIFD']['ApertureValue'] . "
  • \n";` (1) is for `ec_get_attachment_exif();` (2) is for `ec_get_image_exif();` = Some of my images have no EXIF data. Will the plugin display an empty table? = No. The plugin checks for a value in the `['IFD0']['Model']` field of the array. If there's no value, the table doesn't display. = Can I change the way the date displays? = Yes. Change `$exif_date = 'm.d.Y';` == Screenshots == 1. Data table, an unordered list. More info at [POS51](http://pos51.org/wordpress-plugin-wp-gallery-exif-reader/ "WP Gallery Reader")