I’m attempting to make a slideshow that displays photos from an array. Below is a sample array from one post:
array (
0 =>
array (
'attachment_id' => 263,
'display_order' => 0,
'featured' => false,
'url' =>
array (
'full' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1.jpeg',
'large' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1.jpeg',
'medium' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-300x257.jpeg',
'drts_thumbnail' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-240x180.jpeg',
'drts_thumbnail_scaled' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-210x180.jpeg',
'drts_icon' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-32x32.jpeg',
'drts_icon_lg' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-48x48.jpeg',
'drts_icon_xl' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000x857-1-80x80.jpeg',
),
'title' => 'Raw-Art-Works-youth-at-annual-block-party-in-Lynn-1000×857',
'alt' => '',
),
1 =>
array (
'attachment_id' => 264,
'display_order' => 1,
'featured' => false,
'url' =>
array (
'full' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop.jpeg',
'large' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-1024x806.jpeg',
'medium' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-300x236.jpeg',
'drts_thumbnail' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-240x180.jpeg',
'drts_thumbnail_scaled' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-229x180.jpeg',
'drts_icon' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-32x32.jpeg',
'drts_icon_lg' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-48x48.jpeg',
'drts_icon_xl' => 'https://lynnculturadev.wpengine.com/wp-content/uploads/2023/01/crop-80x80.jpeg',
),
'title' => 'crop',
'alt' => '',
),
)
This is what I have so far.
Container with a Dynamic Content Provider of {{dc:post:meta key="_drts_directory_photos"}}
.
|_ > Slides set to Consumer All
|_ > Slide Background Image URL is {{dc:looper:field key="url.full"}}
This setup only shows the first image of the array. Here is a video of the setup in case its not clear:
Any idea what I need to change about this setup to get my slideshow to display each image in the array?