On December 21, 2014 at 12:11 pm
1. If you point at a thumbnail you will see the exif data pop-up. To do so I had to add the code from point 2. The way it displays now is not the way I want.
I would like to see it on the page itself, on the right or left side. (Page template with a left side bar).
Link: http://www.martinvdmoortel-photography.be/rockabilly/
2. I added this code in the functions.php (found on the Exifography website)
function my_image_titles($atts,$img) {
if (function_exists(‘exifography_display_exif’))
$atts[‘title’] = trim(strip_tags( $img->post_title )) .’ ‘. exifography_display_exif(‘aperture,shutter,iso,focal_length’,$img->ID);
else
$atts[‘title’] = trim(strip_tags( $img->post_title ));
return $atts;
}
add_filter(‘wp_get_attachment_image_attributes’,’my_image_titles’,10,2);
3. Another problem I have is that sometimes the big image associated with the first thumbnail does not open. If I click on the thumb, only half of the image is displayed.
I have to refresh the page to solve it?