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