Testimonial Post type display with optional video and microdata
<p itemscope itemtype="http://data-vocabulary.org/Review" class="testimonial">
<?php
global $wp_embed;
if (get_field('video') != '') {
?>
<div class="video-wrapper-testimonial">
<div class="testimonial-video">
<?php
$video = get_field('video');
$post_embed = $wp_embed->run_shortcode('[embed]' . $video . '[/embed]');
echo $post_embed;
?>
</div>
</div>
<?php } // end of video testimonials
?>
<q itemprop="description"><?php
the_content(); ?></q>
<cite><span itemprop="reviewer"><?php
display_field("name"); ?></span></cite>
</p>