get_field image code example
Example 1: wp+get custom field phpto
<div class="about_photo">
<?php
$value =get_field('about_photo');
echo "<img src='".$value."' width='200px' height='200px'>";
?>
</div>
Example 2: acf get field
$value = get_field( "text_field" );
if( $value ) {
echo $value;
} else {
echo 'empty';
}