testimonials.php 602 B

12345678910111213141516171819202122
  1. <?php
  2. $testimonials = new WP_Query( array(
  3. 'post_type' => 'jetpack-testimonial',
  4. 'order' => 'ASC',
  5. 'orderby' => 'menu_order',
  6. 'posts_per_page' => 2,
  7. 'no_found_rows' => true,
  8. ) );
  9. ?>
  10. <?php if ( $testimonials->have_posts() ) : ?>
  11. <div id="front-page-testimonials" class="front-testimonials testimonials">
  12. <div class="grid-row">
  13. <?php
  14. while ( $testimonials->have_posts() ) : $testimonials->the_post();
  15. get_template_part( 'components/features/testimonials/content', 'testimonials' );
  16. endwhile;
  17. wp_reset_postdata();
  18. ?>
  19. </div>
  20. </div>
  21. <?php endif; ?>