content-testimonial.php 771 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template used for displaying testimonials.
  4. *
  5. * @package Dara
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <?php if ( has_post_thumbnail() ) : ?>
  10. <div class="testimonial-thumbnail">
  11. <?php the_post_thumbnail( 'dara-testimonial-thumbnail' ); ?>
  12. </div>
  13. <?php endif; ?>
  14. <div class="entry-content">
  15. <?php the_content(); ?>
  16. </div>
  17. <header class="entry-header">
  18. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  19. </header>
  20. <?php
  21. edit_post_link(
  22. sprintf(
  23. /* translators: %s: Name of current post */
  24. esc_html__( 'Edit %s', 'dara' ),
  25. the_title( '<span class="screen-reader-text">"', '"</span>', false )
  26. ),
  27. '<span class="edit-link">',
  28. '</span>'
  29. );
  30. ?>
  31. </article><!-- #post-## -->