Text before exif data
-
Hi Kristarella.
Love the plugin, works pretty good, but…
I have added this code to the bottom of the exifography.php file and it works fine except the text is showing after, not before which is where I want it.
// my edits to exif display function add_before_exif($content) { $item = '<h4>Camera Information</h4>'; array_unshift($content,$item); return $content; } add_filter('exifography_display_exif','add_before_exif'); function reorder_exif($content) { $order = array('camera','shutter_speed','aperture','exposure_bias','focal_length','iso'); $new = array(); foreach ($order as $key) { if (isset($content[$key])) { $new[$key] = $content[$key]; unset($content[$key]); } } $new_content = array_merge($new,$content); return $new_content; } add_filter('exifography_display_exif','reorder_exif');
Is there a fix for this issue?
You can view it on my website here: My Site
Regards.
Michael.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Text before exif data’ is closed to new replies.