single-jetpack-testimonial.php 612 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * The template for displaying all single posts.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
  6. *
  7. * @package Shoreditch
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <main id="main" class="site-main" role="main">
  12. <div class="hentry-wrapper">
  13. <?php
  14. while ( have_posts() ) : the_post();
  15. get_template_part( 'template-parts/content', 'testimonial' );
  16. endwhile; // End of the loop.
  17. ?>
  18. </div><!-- .hentry-wrapper -->
  19. </main><!-- #main -->
  20. </div><!-- #primary -->
  21. <?php
  22. get_sidebar( 'footer' );
  23. get_footer();