123456789101112131415161718192021222324 |
- <?php
- /**
- * The template used for displaying testimonials.
- *
- * @package Lodestar
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content(); ?>
- </div>
- <div class="testimonial-about">
- <?php if ( has_post_thumbnail() ) : ?>
- <div class="post-thumbnail"><?php the_post_thumbnail( 'lodestar-thumbnail-avatar' ); ?></div>
- <?php endif; ?>
- <header class="entry-header">
- <?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
- <?php lodestar_edit_link( get_the_ID() ); ?>
- </header>
- </div>
- </article>
|