Nike sigue apostando por revivir uno de sus modelos más clásicos y afamados diseñado por Tinker Hatfield, la Nike Air Huarache. Esta vez con dos colorways basados en los mismos tonos aplicados de forma antónima, inspirados por el Amor y el Odio, lo cual se refleja muy bien en la silueta que funde los dos colores que más representan estos sentimientos, el rojo y el negro. La silueta creada en el ’92 mantiene algunos de sus materiales originales, como el neopreno de la caña o la malla de parte del upper. Mientras que las planchas que originalmente eran de cuero en este Pack están hechas con suede, lo cual le da un toque premium a la sneaker.
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;
?>