content-testimonial.php 600 B

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