'post',
'posts_per_page' => 3,
'orderby' => 'date',
'order' => 'DESC',
);
$query = new WP_Query($args);
if ( $query->have_posts() ) :
?>
have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
global $post;
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'allegro_slick_large');
$thumbnailIMG = (!empty($thumb)) ? $thumb[0] : get_stylesheet_directory_uri()."/assets/images/placeholder-560x371.jpg";
$thumbnailALT = (get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true )) ? get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true ) : get_the_title() ;
?>