get_gallery_image_ids();
// Get attachments count.
$attachments_count = count( $attachment_ids );
// Image args.
$img_args = array(
'alt' => get_the_title(),
);
if ( oceanwp_get_schema_markup( 'image' ) ) {
$img_args['itemprop'] = 'image';
}
?>
-
0 ) :
// Loop through images.
foreach ( $attachment_ids as $attachment_id ) :
$attachment_url = wp_get_attachment_image_src( $attachment_id, 'shop_catalog' )[0];
// Add to counter.
$count++;
// Only display the first 5 images.
if ( $count < 5 ) :
?>
-