content-testimonials.php 616 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * The template used for displaying testimonials.
  4. *
  5. * @package Components
  6. */
  7. ?>
  8. <div id="post-<?php the_ID(); ?>" class="hentry testimonial carousel-cell">
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. </div>
  12. <header class="entry-header">
  13. <?php if ( has_post_thumbnail() ) : ?>
  14. <div class="post-thumbnail"><?php the_post_thumbnail( 'textbook-thumbnail-avatar' ); ?></div>
  15. <?php endif; ?>
  16. <?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
  17. <?php edit_post_link( esc_html__( 'Edit', 'textbook' ), '<span class="edit-link">', '</span>' ); ?>
  18. </header>
  19. </div><!-- #post-## -->