usagizmo
12/20/2017 - 11:59 AM

Get custom field image (ACF)

<?php
function get_acf_image($fname, $fsize)
{
    $attachment_id = get_field($fname);
    $image = wp_get_attachment_image_src($attachment_id, $fsize);
    return $image;
}

add_image_size('archive-case', 377, 255, true);