<?php if (have_posts()) : while (have_posts()) : the_post();
global $post; ?>
<div class="slide">
<?php
$width = 847;
$height = 309;
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,'featured-image',$titletext,$titletext,false,'Featured');
$arr[$i]['titletext'] = get_post_meta( $post->ID, 'Smalltitle', true ) ? get_post_meta( $post->ID, 'Smalltitle', true ) : truncate_title(20,false);
$arr[$i]['description'] = get_post_meta( $post->ID, 'Smalldesc', true ) ? get_post_meta( $post->ID, 'Smalldesc', true ) : truncate_post(45,false);
$thumb = $thumbnail["thumb"];
print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, 'featured-image'); ?>
<span class="overlay"></span>
<div class="description">
<h2 class="featured-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php truncate_post(350); ?></p>
<a href="<?php the_permalink(); ?>" class="readmore"><?php esc_html_e('Leer más', 'Sky'); ?></a>
</div> <!-- end .description -->
</div> <!-- end .slide -->
<?php $i++; endwhile; endif; wp_reset_query(); ?>