Display attachment thumbnail with image metadata
wordpress snippet
Adding this snippet within the loop of your index.php template file will display a list of all post attachments with the following metadata (Credit, Camera, Focal Length, Aperture, ISO, Shutter Speed, Time Stamp, Copyright).
snippet : PHPcopy
<?php
if($images =& get_children( 'post_type=attachment' )){
foreach($images as $id => $attachment ){
echo '<div>';
echo wp_get_attachment_image( $id, 'thumb' )."<br />";
$meta = wp_get_attachment_metadata($id);
echo "Credit: ".$meta[image_meta][credit]."<br /> ";
echo "Camera: ".$meta[image_meta][camera]."<br />";
echo "Focal length: ".$meta[image_meta][focal_length]."<br />";
echo "Aperture: ".$meta[image_meta][aperture]."<br />";
echo "ISO: ".$meta[image_meta][iso]."<br />";
echo "Shutter speed: ".$meta[image_meta][shutter_speed]."<br />";
echo "Time Stamp: ".$meta[image_meta][created_timestamp]."<br />";
echo "Copyright: ".$meta[image_meta][copyright];
echo '</div>';
}
}
?>
this months featured snippets
- denny
- http://wpsnipp.com Kevin Chard
- Emil Uzelac
- http://wpsnipp.com Kevin Chard





