<?php $query = new WP_Query( array( ‘post_type’ => ‘post’, ‘posts_per_page’ => 2 ) );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID )); ?>
<div class=”col2″>
<div class=”article”>
<div class=”image”>
<a href=”<?php echo get_permalink($post->ID); ?>”>
<img src=”<?php echo $image ?>”>
</a>
</div>
<h2><a href=”<?php echo get_permalink($post->ID); ?>”><?php echo get_the_title(); ?></a></h2>
<p><?php $content = get_the_content(); echo mb_strimwidth($content, 0, 200, ‘…’);?></p>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>