Last active
December 19, 2015 01:29
-
-
Save jrstaatsiii/5876225 to your computer and use it in GitHub Desktop.
Woothemes Testimonials Plugin Code Snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do_action( 'woothemes_testimonials', array( | |
'tax_query' => array( | |
array( | |
'taxonomy' => 'testimonial-category', | |
'field' => 'id', | |
'terms' => array( $testimonial_id ) | |
) | |
), | |
'limit' => 1, | |
'orderby' => 'rand', | |
'title' => 'Testimonials', | |
'before_title' => '<h4 class="widgettitle">', | |
'after_title' => '</h4>' | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment