Home › Forums › Add-ons › Gallery Field › If gallery is not populated, it pulls media inserted into Post. › Reply To: If gallery is not populated, it pulls media inserted into Post.
Only do the shortcode if the gallery field has a value, otherwise the WP gallery shortcode is doing what is should be doing when no ids are supplied
$image_ids = get_field('gallery', false, false);
if (!empty($image_ids)) {
$shortcode = '[gallery class="fancybox" link="file" columns="4" ids="' .
implode(',', (array)$image_ids) . '"]';
echo do_shortcode( $shortcode );
}
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.