content-testimonials.php 716 B

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