Continuando con su duradera asociación, Nike y CLOT se valen de Medicom Toy para crear un set BE@RBRICK inspirado en las Air Force 1 «Royal Blue Silk University» lanzadas el año pasado.
El conjunto presenta los tamaños 400% y 100% de BE@RBRICK, cubiertos con el patrón Silk Royale usado en las últimas colaboraciones de Nike de la etiqueta de Edison Chen y Kevin Poon. Continuando con el concepto utilizado en la trilogía de calzado Silk Force, los BE@RBRICK expresan la idea de yin y yang, externalismo e internalismo. Con una base de “Rose Gold Silk” que representa una capa oculta del interior de uno mismo cubierta por una parte superior de “Royale University Blue Silk”.
Viene con una embalaje especial con apariencia de caja de zapatos que hace referencia a los tres lanzamientos de calzado de CLOT y Nike el año pasado.
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;
?>