get_gallery_attachment_ids(); if ( $attachment_ids ) { foreach ( $attachment_ids as $attachment_id ) { $full_size_image = wp_get_attachment_image_src( $attachment_id, 'full' ); $thumbnail = wp_get_attachment_image_src( $attachment_id, 'shop_thumbnail' ); $thumbnail_post = get_post( $attachment_id ); $image_title = $thumbnail_post->post_content; $attributes = array( 'title' => $image_title, 'data-large-image' => $full_size_image[0], 'data-large-image-width' => $full_size_image[1], 'data-large-image-height' => $full_size_image[2], ); echo ''; } }