You have a Meta Box image_advanced
field and want to use the first image as the Open Graph image.
add_filter( 'slim_seo_open_graph_image', function( $image ) {
if ( ! is_singular() ) {
return $image;
}
$images = rwmb_meta( 'gallery' );
if ( ! empty( $images ) ) {
$image = reset( $images );
return $image['full_url'];
}
return $image;
} );