content-testimonials.php 581 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * The template used for displaying testimonials.
  4. *
  5. * @package Lodestar
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. </div>
  12. <div class="testimonial-about">
  13. <?php if ( has_post_thumbnail() ) : ?>
  14. <div class="post-thumbnail"><?php the_post_thumbnail( 'lodestar-thumbnail-avatar' ); ?></div>
  15. <?php endif; ?>
  16. <header class="entry-header">
  17. <?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
  18. <?php lodestar_edit_link( get_the_ID() ); ?>
  19. </header>
  20. </div>
  21. </article>