LOEWE Perfumes ha reinterpretado dos fragancias de la colección Botanical Rainbow aumentando la concentración de aceites esenciales para aumentar la estela de los perfumes.
LOEWE Earth Elixir presenta notas florales, ambarinas y almizcladas de trufa, pera y oud que se combinan con elemí, mimosa y violeta, en una línea inspirada por los elementos de la naturaleza. Por otro lado, LOEWE 7 Elixir fusiona notas de pachulí con bayas de pimiento rojo y ámbar, inspirándose en el espacio exterior y en la sensación de misterio que evoca.
Cada uno de los nuevos perfumes se presenta en frascos de vidrio en forma de bloque con un degradado de su color original – el malva para LOEWE Earth Elixir y azul noche para LOEWE 7 Elixir.
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;
?>