Aunque en nuestra cultura occidental las máscaras suelen utilizarse para ocultar algo o mostrar miedo, en Japón suelen gozar de mas aceptación entre la gente. Es por eso que uno de los temas recurrentes sobre los que ha trabajado Shin Murayama han sido las propias máscaras.
Shin empezó su andadura como diseñador por el país nipón uniéndose a varios proyectos y marcas textiles después de graduarse en el Bunka Fashion College. Hasta que en el 2008 se traslada a EEUU creando allí sus primeras mask series y utilizando por primera vez su nombre para exhibir sus piezas. Desde entonces, y después de varias exposiciones individuales, colaboraciones y publicaciones independientes dentro de la moda; Murayama se ha ganado el sobrenombre de mask-maker. Pudiéndose considerar uno de los hombres máscara más creativos y prolíficos del panorama artístico actual.
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;
?>