Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created July 18, 2015 12:42
Show Gist options
  • Save BoweFrankema/4b7ec2bbc8aee51bf27b to your computer and use it in GitHub Desktop.
Save BoweFrankema/4b7ec2bbc8aee51bf27b to your computer and use it in GitHub Desktop.
Template-part.php
<div class="testimonial">
<div class="col-sm-3 testimonial-left">
<div class="testimonial-avatar">
<img src="<?php echo wpthumb( get_field('testimonial_avatar') , 'width=300&height=300&crop=0&jpeg_quality=95' ) ?>" alt="The WeFoster testimonial of <?php echo get_field('testimonial_customer_name');?>">
</div>
</div>
<div class="testimonial-right col-sm-9">
<h3>
<?php the_title(); ?>
</h3>
<div class="testiomial-content">
<?php the_content(); ?>
</div>
<div class="testimonial-name">
<a href="<?php echo get_field('testimonial_website_url');?>">
<?php echo get_field('testimonial_customer_name');?> from <?php echo get_field('testimonial_website_name');?>
</a>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment