Después de haber triunfado dos veces consecutivas con su colaboración con los de Oregón, el reconocido diseñador Riccardo Tisci lanza lo que será su última colección con Nike de Air Force One. Lo que Tisci quiere transmitir con esta serie de colaboraciones es el poder que tiene el deporte para unir tribus urbanas dispares bajo un único amor: el amor por las sneakers Air Force One. Este último colorway se basa en el beige, con algunos toques en negro y diferentes tonos de grises que hacen de esta edición la más sobria de las tres. Hechas con cuero de primera calidad en su mayoría, hay ciertos detalles en suede sintético y cuero negro envejecido en el Swoosh que generan un contraste elegante al que nos tiene acostumbrados el diseñador.
Si estás interesado en ellas puedes reservarlas en Gallery Madrid (C/ Jorge Juan, 38) a partir del 15 de octubre a las 11:00 AM.
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;
?>