Support

Account

Home Forums Front-end Issues Echo image not working. Reply To: Echo image not working.

  • get_field() doe not echo values. If you want to echo them then you either need to do so or you need to use the_field()

    
    // this
    <?php echo get_field('thumb_one'); ?>
    // or this
    <?php the_field('thumb_one'); ?>