Hi.
I want to create native wp gallery under posts with advanced image field.
I can do this with Acf Pro with the code below.
$image_ids = get_field('gallery', false, false);
$shortcode = '[' . 'gallery ids="' . implode(',', $image_ids) . '"]';
echo do_shortcode( $shortcode );
Can i do this with metabox advanced image field with a code ? If i can i will be very happy if you share a snippet code for this.
Thanks.