El pasado mes de junio, como parte del IV Centenario de la Plaza Mayor madrileña, el colectivo anónimo de luzinterruptus decidió llevar a cabo su Laberinto de Residuos Plásticos. Una instalación en pleno centro turístico de la capital construido con las botellas consumidas en el entorno de la plaza durante un mes.
Concienciando así, y gráficamente, sobre la gran cantidad de plástico que generamos diariamente. Con sus consecuentes repercusiones sobre el medio ambiente. Por lo que el laberinto se concibió para provocar claustrofobia y malestar, desorientando al espectador con el propio calor y el olor a plástico.
Puedes leer más información sobre la instalación y el colectivo a través de su website.
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;
?>