Home › Forums › Pre-purchase Questions › Gallery add-on › Reply To: Gallery add-on
Thank you very much for your efforts Elliot, unfortunatly this didn’t work with the WordPress default gallery code. I’ve tried with this but it didn’t work:
<?php
$images = get_field('gallery');
$max = 5;
$i = 0;
if( $images ): ?>
<?php foreach( $images as $image ): $i++; ?>
<?php if( $i > $max){ break; } ?>
<?php
$shortcode = '[gallery columns="1" link="file" size="medium" ids="' . implode(',', $image_ids) . '"]';
echo do_shortcode( $shortcode ); ?>
<?php endforeach; ?>
<?php endif; ?>
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.