<div class="slider-reviews owl-theme">
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
<div class="item"><div class="video-s"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div></div>
</div>
<?php
// Example argument that defines three posts per page.
$args = array( 'posts_per_page' => 10 );
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();?>
<div class="large-widget m30">
<div class="post row clearfix">
<div class="col-md-5">
<div class="post-media">
<a href="<?php the_permalink(); ?>">
<?php if (get_the_post_thumbnail($post->ID, 'post-blogsize')) {
echo get_the_post_thumbnail($post->ID, 'post-blogsize');
} else { ?>
<?php } ?>
</a>
</div>
</div>
<div class="col-md-7">
<div class="title-area">
<div class="colorfulcats">
<a href="<?php the_permalink(); ?>"><span class="label label-primary"><?php the_category(); ?></span></a>
</div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="large-post-meta">
<span class="avatar"><a href="#"><?php echo get_the_author(); ?></a></span>
<small>|</small>
<span><a href="<?php the_permalink(); ?>"><i class="fa fa-clock-o"></i><?php the_time('j F Y'); ?></a></span>
<small class="hidden-xs">|</small>
<span class="hidden-xs"><a href="<?php the_permalink(); ?>"><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%'); ?></a></span>
</div>
<!-- end meta -->
</div>
<!-- /.pull-right -->
</div>
</div>
<!-- end post -->
</div>
<?php
endwhile;
else:
endif;
wp_reset_postdata(); ?>