Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-md-12">
  3. <h1>Algunos de nuestros clientes</h1>
  4. <div id="owl-demo">
  5. <?php
  6. $args = array( 'post_type' => 'nuestrosclientes');
  7. $query = new WP_Query($args);
  8. $n=0;
  9. while($query -> have_posts()) : $query ->the_post();
  10. $n++;
  11. ?>
  12. <div class="<?php if($n==1) echo 'owl-item'; ?>" class="img-resposive" alt="Owl Image">
  13. <?php if (has_post_thumbnail() ) { the_post_thumbnail('nuestrosclientes'); } ?>
  14. </div>
  15.  
  16. <div class="owl-controls clickable">
  17. <div class="owl-buttons">
  18. <div class="owl-prev"></div>
  19. <div class="owl-next"></div>
  20. </div>
  21. </div>
  22. <?php endwhile; ?>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement