Conexión Barcelona – Amsterdam, 24 Kilates y Patta colaboran junto a Sperry Top-Sider para crear una colección cápsula con influencia de las dos ciudades origen de las tiendas. Jugando con banderas representativas de cada ciudad, como son la cruz de San Jorge con la señera y las tres cruces de San Andrés, las diferentes prendas juegan con sus motivos como elemento decorativo. La colección esta compuesta por unos Sperry Striper CVO, un bucket hat, riñonera, camisa de manga larga en dos variaciones de color, camiseta de manga corta y pantalón corto.
Disponibles a partir de hoy mismo en 24 Kilates.
foreach ($images as $image) {
if ($start <= $i and $i < $stop) {
$img_title = $image->post_title; // title.
$img_description = $image->post_content; // description.
$img_caption = $image->post_excerpt; // caption.
$img_url = wp_get_attachment_url($image->ID); // url of the full size image.
$preview_array = image_downsize( $image->ID, 'thumbnail' );
$img_preview = $preview_array[0]; // thumbnail or medium image to use for preview.
?>
}
$i++;
}
?>
}
}
// LAST NIGHT GALLERY=============================
// Get attached images & spits out a list of them.
function last_night_gallery($size = 'post-parrilla', $limit = '0', $offset = '0') {
global $post;
$images = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($images) {
$num_of_images = count($images);
if ($offset > 0) : $start = $offset--; else : $start = 0; endif;
if ($limit > 0) : $stop = $limit+$start; else : $stop = $num_of_images; endif;
$i = 0;
?>