Hi All, I'm a recent convert from ACF Pro to Meta Box AIO. I have a site I converted, which had an ACF image gallery, which is now Image Advanced in Meta Box. I'm using Bricks Builder and have a slider that uses a query look (custom code in the Query Editor) to pull the images from the ACF image gallery. Trouble is, now that I have migrated, that no longer works obviously, but I'm have a heck of a time finding code that would work with Image Advanced. The website page where I'm using the slider is here: https://jeffreys234.sg-host.com/quirkle/botanist-bert/
Any recommendations on how to get this to work?
The code I'm using in the Query Editor is:
/* use image advanced field id from MetaBox */
$mb_images = rwmb_get_value("character_image_gallery");
if (!empty($mb_images)) {
return [
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_status' => 'inherit',
'orderby' => 'post__in',
'post__in' => $mb_images,
'posts_per_page' => -1,
];
} else {
return [];
}