
Carhartt WIP ha unido fuerzas con la legendaria marca de zapatillas Converse para crear una colección inspirada en la skate culture para la próxima Primavera/Verano 22. Ambas marcas estadounidenses comparten sus raíces con esta disciplina urbana para la cual han querido homenajear en una colaboración que ha contado con Leo Vernhet a la cabeza de la dirección creativa, además de contar con numerosos fotógrafos alrededor del mundo para inmortalizar la campaña.
La línea cuenta con dos estilos reducido a dos modelos: las low-One Star Ox Pro y las mid-Fast Break Ox Pro, ambas zapatillas combinan telas como gamuza, lona y cuero con un guiño a los clásicos diseños de Carhartt WIP.
CONS X Carhartt Wip estará disponible el próximo 31 marzo en la web y en puntos de venta físicos seleccionados.



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;
?>