the_iv_image()
Overview
Use this function to output HTML for a specific Imagevault media field.
Parameters
the_iv_image($field_object);
$field_object
(array) (Required) The ACF field object
Return
Nothing
Usage
Example: Render an IMG tag inside a DIV
<div>
<?php
the_iv_image( get_field_object( $field_name, $post_id ) );
?>
</div>