Skip to content

Instantly share code, notes, and snippets.

@jrstaatsiii
Last active December 19, 2015 01:29
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 jrstaatsiii/5876225 to your computer and use it in GitHub Desktop.
Save jrstaatsiii/5876225 to your computer and use it in GitHub Desktop.
Woothemes Testimonials Plugin Code Snippet
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