Home › Forums › Add-ons › Gallery Field › Custom class for images in gallery field › Reply To: Custom class for images in gallery field
This seems relatively tricky.
One way would be to use the Caption or Description meta box in the Image Uploader to store a class name, and then output it like this
<img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" class="<?php echo $image['caption']; ?>"/>
Or you could output a generic class for all images
<img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" class="gallery_images_class"/>
and then use a css :nth-of-type selector to target specific instances (eg. images 4, 7 out of 10)
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.