Support

Account

Home Forums Front-end Issues Displaying image in parent page Reply To: Displaying image in parent page

  • What do you have the image field set to return? It is probably set to “Image Object” or “Image Array” depending on what version of ACF you’re using. Either set it to return the Image URL or do

    
    <img src="<?php $image = get_field( 'image-1', $page->ID );
                            echo $image['url']; ?>">