Advertisement
srikat

Untitled

Jun 3rd, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. div class="row no-gutters">
  2. <?php
  3. // Testimonial single Looop
  4. $testimonial_loop = array(
  5. 'numberposts' => -1,
  6. 'post_type' => 'testimonial',
  7. 'showposts' => '4',
  8. 'tax_query' => array(
  9. array(
  10. 'taxonomy' => 'testimonial-types', // enter your taxonomy name here
  11. 'field' => 'slug',
  12. 'terms' => array( 'hidden' ), // enter the taxonomy term you wish to exclude entries of
  13. 'operator' => 'NOT IN',
  14. ),
  15. )
  16. );
  17.  
  18.  
  19. // Start testimonial Loop
  20. $the_query = new WP_Query( $testimonial_loop ); ?>
  21.  
  22. <?php if( $the_query->have_posts() ): ?>
  23.  
  24. <?php while( $the_query->have_posts() ) : $the_query->the_post(); ?>
  25.  
  26.  
  27. <div class="col-xs-12 col-md-3 row no-gutters ">
  28. <a href="<?php the_permalink(); ?>">
  29. <!-- Get persons thumb and display it in the background -->
  30. <div class="col-xs-6 col-md-12 feedperson" style=" background:url(<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>) center ; background-position: center !important;">
  31. </div>
  32.  
  33. <div class="col-xs-6 col-md-12 feedpersontitle shade15" >
  34. <span class="spacer30"></span>
  35. <h2 class="text-center"><?php the_field('name'); ?></h2>
  36. <h4 class="text-center"><?php the_time('F j, Y'); ?></h4>
  37. </div>
  38. </a>
  39. </div>
  40.  
  41. <?php endwhile; ?>
  42.  
  43. <?php endif; ?>
  44.  
  45. <?php wp_reset_query(); // End testimonial loop. Restore global post data stomped by the_post(). ?>
  46.  
  47. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement