StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 01-12-2010, 06:05 PM
lexo lexo is offline
Registered User
Genesis Member
 
Join Date: Jan 2010
Posts: 5
Default Exif Information

I want to show some exif information in the content part - rightpost - od my post_photo.php. I was reading that wordpress can do that with:

$imgmeta = wp_get_attachment_metadata( $id );

the whole thing should look like this then:

< ?php
if (is_attachment()) :
$imgmeta = wp_get_attachment_metadata( $id );
echo "<ul>\n";
echo "<li>Dimensions: " . $imgmeta['width']." x ".$imgmeta['height']."</li>\n";
echo "<li>Aperture: f/" . $imgmeta['image_meta']['aperture']."</li>\n";
echo "<li>Camera: " . $imgmeta['image_meta']['camera']."</li>\n";
echo "<li>Date Taken: " . date("d-m-Y H:i", $imgmeta['image_meta']['created_timestamp'])."</li>\n";
echo "<li>Copyright: " . $imgmeta['image_meta']['copyright']."</li>\n";
echo "<li>Focal Length: " . $imgmeta['image_meta']['focal_length']."mm</li>\n";
echo "<li>ISO: " . $imgmeta['image_meta']['iso']."</li>\n";
echo "<li>Shutter Speed: " . number_format($imgmeta['image_meta']['shutter_speed'],2)." seconds</li>\n";
echo "";
endif;
?>

Still i can't get this to work. There is no error message, but the theme is not showing anything. Any ideas...thx
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Exif data Marijn General Discussion 1 08-07-2009 08:43 AM


All times are GMT -5. The time now is 09:19 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.