Support

Account

Home Forums ACF PRO Error display field image Reply To: Error display field image

  • Hi @kraudio

    It looks like the returned value is wrapped in another array. Your var_dump shows this in the first line: [0] => Array

    Can you test the unformatted value:

    <?php 
    
    echo '<pre>';
    	print_r( get_field('ac_imagem_destaque', false, false) );
    echo '</pre>';
    ?>