Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Created November 1, 2015 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellenmace/47742af303b4329fadf5 to your computer and use it in GitHub Desktop.
Save kellenmace/47742af303b4329fadf5 to your computer and use it in GitHub Desktop.
<?php
function qc_change_testimonial_element_order( $tpl ) {
$tpl = str_replace( '<blockquote class="testimonials-text" itemprop="reviewBody">%%TEXT%%</blockquote>%%AVATAR%% %%AUTHOR%%</div>', '%%AVATAR%%<blockquote class="testimonials-text" itemprop="reviewBody">%%TEXT%%</blockquote>%%AUTHOR%%</div>', $tpl );
return $tpl;
}
add_filter( 'woothemes_testimonials_item_template', 'qc_change_testimonial_element_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment