';
if(isset( $instance['anorya_posts_number'] ) || $instance['anorya_posts_number']){
$args = array( 'posts_per_page' => $instance['anorya_posts_number'] );
}
else
{
$args = array( 'posts_per_page' => 4 );
}
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
$widget_output .= '
';
if ( has_post_thumbnail() ) :
$widget_output .= '
';
endif;
$widget_output .= '
'.get_the_title($query->post->ID);
$widget_output .= '
';
$widget_output .= '
';
$widget_output .= get_the_date('F j, Y',$query->post->ID);
$widget_output .= '';
$widget_output .='
';
endwhile;
endif;
wp_reset_postdata();
$widget_output .= '