$attachment_id = get_field('tab_image');
$size = "featured_top"; // (thumbnail, medium, large, full or custom size)
$image = wp_get_attachment_image_src( $attachment_id, $size );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
the_field('gallery_content'); ?>
Click to enlarge
$x = 0;
$rows = get_field('gallery_images');
if($rows)
{
foreach($rows as $row)
{
$x += 1;
$attachment_id = $row['image'];
$size = "single_gallery"; // (thumbnail, medium, large, full or custom size)
$image = wp_get_attachment_image_src( $attachment_id, $size );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
-
}
}
?>