$gallery = get_post_meta($post->ID, 'st_gallery', false);
if(!empty($gallery))
{
echo '
';
foreach($gallery as $thumbs)
{
$image_attributes = wp_get_attachment_image_src( $thumbs, 'thumbnail', false );
$image_fullscreen = wp_get_attachment_image_src( $thumbs, 'large', false );
echo '
';
}
echo '
';
}
?>