Support

Account

Home Forums General Issues get_field() — noob problems with Brizy Reply To: get_field() — noob problems with Brizy

  • If I’ve understood, use:

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

    Basically, if no image is added, nothing will be displayed.