erikzp
Forum Replies Created
-
Forum: Plugins
In reply to: [Exifography] Working in some photos and other notI realised how to do it myself,
Thank you very much Kristarella, really appreciate your support.Have a good day.
Cheers
+eForum: Plugins
In reply to: [Exifography] Working in some photos and other notActually I’m displaying the image via a custom field. Maybe is that.
Forum: Plugins
In reply to: [Exifography] Working in some photos and other notYou are right, when I assign it as featured image works perfectly, is there a way to do it without assign it?
is just that it duplicates the image in the post.
Thanks.Forum: Plugins
In reply to: [Exifography] Working in some photos and other notThanks for your reply Kristarella,
I’m actually doing it this way:
the image:
<?php if (get_post_meta($post->ID, ‘img_post_header’, true)) { ?><img class=”img_header” src=”<?php echo get_post_meta($post->ID, ‘img_post_header’, true);?>” alt=”<?php echo get_post_meta($post->ID, ‘img_post_header_alt’, true); ?>” /><?php } ?>the exif:
<span class=”exif-data”>
<?php if (function_exists(‘exifography_display_exif’)) {
$id = get_post_thumbnail_id($post->ID);
echo exifography_display_exif(‘camera,focal_length,aperture,shutter,iso’,$id);
} ?>
</span>I’m uploading the original photos from the camera and making a resize in wordpress.
Thanks again for your help.