<div id="owl-carousel">
<?php
$args = array(
'post_type' =>
'news',
'showposts' => 2
);
$news = get_posts($args);
foreach ($news as $post):
setup_postdata($post);
?>
<div class="item">
<div class="img">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<div class="text">
<h4 class="title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h4>
<?php echo content(25); ?>
</div>
</div>
<?php endforeach; ?>
</div>
$("#owl-carousel").owlCarousel({
autoPlay: 4e3,
stopOnHover: !0,
singleItem: !0,
transitionStyle: "fade",
itemElement: ".item"
})