En plena renovación, la Cadena Cope lanzó hace unos días un nuevo formato online de especiales informativos, siendo los precursores dentro de la radio española. El pasado 30 de septiembre se inició con ‘La mañana‘ de Ángel Expósito, donde el informativo se desplazó hasta Melilla para contar el drama de la valla a través de sus protagonistas, escuchando las voces de los inmigrantes, los que les ayudan y los Guardias Civiles.
El reportaje multimedia, disponible en cope.es, presenta a los protagonistas de ‘Melilla: por encima de la valla‘ a través de cinco historias de narrativa transmedia mezclando audio, vídeo, texto y fotografías. Además de fomentar la participación y opinión sociales mediante el hashtag #traslavalla.
Sin duda, estaremos atentos a nuevos protagonistas e historias con tanto componente humano.
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;
?>