content.php
48 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template Name: Simple |
| 4 | * Description: A simple template. |
| 5 | */ |
| 6 | ?> |
| 7 | <?php do_action( 'wpmtst_before_view' ); ?> |
| 8 | |
| 9 | <div class="strong-view <?php wpmtst_container_class(); ?>"<?php wpmtst_container_data(); ?>> |
| 10 | <?php do_action( 'wpmtst_view_header' ); ?> |
| 11 | |
| 12 | <div class="strong-content <?php wpmtst_content_class(); ?>"> |
| 13 | <?php do_action( 'wpmtst_before_content' ); ?> |
| 14 | |
| 15 | <?php while ( $query->have_posts() ) : $query->the_post(); ?> |
| 16 | <div class="<?php wpmtst_post_class(); ?>"> |
| 17 | |
| 18 | <div class="testimonial-inner"> |
| 19 | <?php do_action( 'wpmtst_before_testimonial' ); ?> |
| 20 | |
| 21 | <?php wpmtst_the_title( '<h3 class="testimonial-heading">', '</h3>' ); ?> |
| 22 | |
| 23 | <div class="testimonial-content"> |
| 24 | <?php wpmtst_the_thumbnail(); ?> |
| 25 | <div class="maybe-clear"></div> |
| 26 | <?php wpmtst_the_content(); ?> |
| 27 | <?php do_action( 'wpmtst_after_testimonial_content' ); ?> |
| 28 | </div> |
| 29 | |
| 30 | <div class="testimonial-client"> |
| 31 | <?php wpmtst_the_client(); ?> |
| 32 | </div> |
| 33 | <div class="clear"></div> |
| 34 | |
| 35 | <?php do_action( 'wpmtst_after_testimonial' ); ?> |
| 36 | </div> |
| 37 | |
| 38 | </div> |
| 39 | <?php endwhile; ?> |
| 40 | |
| 41 | <?php do_action( 'wpmtst_after_content' ); ?> |
| 42 | </div> |
| 43 | |
| 44 | <?php do_action( 'wpmtst_view_footer' ); ?> |
| 45 | </div> |
| 46 | |
| 47 | <?php do_action( 'wpmtst_after_view' ); ?> |
| 48 |