File: /datos/www/www.colombia.co/public_html/wp-content/themes/colombia2016/sidebar-article.php
<article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php if(has_post_thumbnail()): ?>
<figure class="post-img">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</figure>
<?php
else:
$thumb = get_field('thumb_post');
if($thumb['sizes']['thumbnail']):
?>
<figure class="post-img">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php echo $thumb['sizes']['thumbnail']; ?>" alt="<?php echo $thumb['alt']; ?>" title="<?php echo $thumb['title']; ?>" />
</a>
</figure>
<?php
endif;
endif;
?>
<div class="post-text">
<h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
</article>