Published
- 1 min read
acf image showing id instead of url
The solution for this is noted below
acf image showing id instead of url
Solution
<?php
$image = get_field('image');
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $image ) {
echo wp_get_attachment_image( $image, $size );
}
Try other methods by searching on the site. That is if this doesn’t work