Home › Forums › Add-ons › Gallery Field › Gallery field to save image order in database? › Reply To: Gallery field to save image order in database?
// post ID in second arg
// false in 3rd arg gets the unformatted value
// this will return an array in the order that the images
// are in the gallery
$gallery = get_field('your-gallery-field', $post_id, false);
// use this array to query the attachments
$query = new WP_Query(array(
// other query arguments
'post__in' => $gallery,
'orderby' => 'post__in'
));
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.