igorklajo
Forum Replies Created
-
Forum: Plugins
In reply to: [Exifography] Only the short-code works ?There’s a plugin called “Description 2 Caption” http://wordpress.org/extend/plugins/description-2-caption/ It takes the IPTC caption of an image and adds it to the caption field, it writes the value to the field and the data is saved in the database. So if you have a little modified gallery (full size images instead of thumbnails) then the caption shows up under ever single image.
The way it works, it could get other EXIF data and write it to the caption field as well.Forum: Plugins
In reply to: [Exifography] On All imagesGood to know I’m not the only one with the same problem. Want to do the same what Jamie has on his blog, for each photo show the exif data on mouse over. The html and css part to do so is not a problem. Like you already wrote, the problem is to add the exif data into the gallery shortcode, so the data gets pulled for the entire gallery.
I’ve been checking the media.php file and some post how to rewrite the output for the gallery shortcode, but had no luck so far figuring out what to do. Tried some things to add to the function.php file but, i don’t understand that much what to do. All I know where the code should go…
<{$icontag} class='gallery-icon'> $link EXIF INFO HERE </{$icontag}>" .... <{$captiontag} class='wp-caption-text gallery-caption'> " . wptexturize($attachment->post_excerpt) . " EXIF INFO HERE </{$captiontag}>";For the mouse over it should be the gallery-icon and for the caption the galler-caption part.
Would be great if this would work