Just now my code looks like this:
<td>
<div class="Rek1"><?php
$my_posts = get_posts('orderby=rand&showposts=1&category=5');
foreach ($my_posts as $post) :
setup_postdata($post);
?>
<div class="widget-week-item4">
<?php the_post_thumbnail(array(300,200)); ?>
<div class="widget-week-content4">
<div class="item-comments4">
<span class="categorys4"><?php the_category(', '); ?></span>
<span class="item-views4"><i class="fa fa-eye"></i> <?php echo getPostViews(get_the_ID()); ?></span></div>
<a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div></div>
<?php endforeach; ?></div>
</td>