Support

Account

Home Forums General Issues Display Image Field From Another Page Reply To: Display Image Field From Another Page

  • Cool, thanks. Here it is:

    <?php 
    $image = get_field('profile_image');
    
    if( !empty($image) ): ?>
    
    	<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    
    <?php endif; ?>