Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1.  
  2. <?php
  3. $type = 'ourpartners';
  4. $args = array(
  5. 'post_type' => $type,
  6. 'showposts' => 99999,
  7. 'order' => 'DESC',
  8.  
  9. 'tax_query' => array(
  10. array(
  11. 'taxonomy' => 'ourteam',
  12. 'field' => 'slug',
  13. 'terms' => 'associates',
  14. ),
  15. ),
  16.  
  17. );
  18.  
  19. $wp_query = new WP_Query($args);
  20. if ($wp_query->have_posts()) {
  21. while ($wp_query->have_posts()) :
  22. $wp_query->the_post();
  23. ?>
  24.  
  25. <div class="col-xs-6 col-sm-4 col-md-3">
  26. <div class="item">
  27. <a href="#">
  28. <div class="team-box">
  29. <div class="image-wrapper">
  30. <img src="img/team/marisol.jpg" alt="" class="img-responsive">
  31. </div>
  32. <h6>marisol l. perez</h6>
  33. <p>Attorney</p>
  34. </div>
  35. </a>
  36. </div>
  37. </div>
  38. <!-- // team box -->
  39.  
  40.  
  41. <?php
  42. endwhile;
  43. }
  44. wp_reset_query();
  45. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement