<div class="owl-carousel owl-theme">
<?php $query = new WP_Query( array(
'category_name' => 'slider',
'posts_per_page' => 8,
'order' => 'DESC',
'showposts' => 3
) );
while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="item"><?php the_title(); ?></div>
<?php endwhile; ?>
</div>
<script>
jQuery('.owl-carousel').owlCarousel({
items:1,
lazyLoad:true,
loop:true,
margin:10,
autoplay:true
})
</script>