Support

Account

Home Forums Front-end Issues Image not displaying Reply To: Image not displaying

  • What is the return values setting of your image field?

    Is your code incomplete?

    To use what you are using the return value for your field needs to be set to URL

    
    <img src="<?php $post_image = get_field('post_image'); echo $post_image; ?>">
    

    or

    
    <img src="<?php the_field('post_image'); ?>">