Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Last active August 29, 2015 13:57
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 halgatewood/9351103 to your computer and use it in GitHub Desktop.
Save halgatewood/9351103 to your computer and use it in GitHub Desktop.
function testimonial_rotator_change_order( $args )
{
$args['order'] = "DESC";
$args['orderby'] = "date";
return $args;
}
// USE THIS add_filter FOR THE WIDGET
add_filter('testimonial_rotator_widget_testimonial_args', 'testimonial_rotator_change_order');
// USE THIS add_filter FOR SHORTCODE
add_filter('testimonial_rotator_display_args', 'testimonial_rotator_change_order');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment