content-testimonial.php 1018 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Template part for displaying posts.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Shoreditch
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <div class="testimonial-entry-content">
  12. <?php the_content(); ?>
  13. </div><!-- .testimonial-entry-content -->
  14. <?php if ( is_single() ) : ?>
  15. <?php the_title( '<span class="testimonial-entry-title">&#8213; ', '</span>' ); ?>
  16. <span class="testimonial-featured-image" aria-hidden="true">
  17. <?php the_post_thumbnail( 'thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
  18. </span>
  19. <?php else : ?>
  20. <?php the_title( '<span class="testimonial-entry-title">&#8213; <a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></span>' ); ?>
  21. <a class="testimonial-featured-image" href="<?php the_permalink(); ?>" aria-hidden="true">
  22. <?php the_post_thumbnail( 'thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
  23. </a>
  24. <?php endif; ?>
  25. </article><!-- #post-## -->