The easiest way would be to use the shortcode.
If you want to add the meta box in the custom post type edit screen to be able to use the automatic insertion, then you would need to put the following in your theme’s functions.php.
function add_my_custom_meta_box() {
global $post;
if (class_exists('exifography')) {
$exif = new exifography();
add_meta_box('exifography_add_meta', __( 'Add EXIF to post', 'exifography' ), array($exif,'edit_post_exif'), 'post_type', 'side', 'low');
}
}
add_action('add_meta_boxes', 'add_my_custom_meta_box');
Replace post_type with the name of your post type.