Support

Account

Home Forums ACF PRO Get/Display Values from an added Field to Attachement Reply To: Get/Display Values from an added Field to Attachement

  • Hi @a2c

    I believe you need to pass the image ID to the get_field() function. It should be something like this:

    echo get_field(field_name, 99);

    where 99 is the image ID. So, it really depends on how you show the images.

    I hope this makes sense.