content-testimonials.php 613 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * The template used for displaying testimonials.
  4. *
  5. * @package Karuna
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. </div>
  12. <?php the_title( '<header class="entry-header"><h2 class="entry-title">', '</h2></header>' ); ?>
  13. <?php if ( has_post_thumbnail() ) : ?>
  14. <div class="post-thumbnail"><?php the_post_thumbnail( 'karuna-thumbnail-avatar' ); ?></div>
  15. <?php endif; ?>
  16. <?php edit_post_link( esc_html__( 'Edit', 'karuna' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
  17. </article>