Testimonials Shortcode – Order examples

// output your 5 most recent testimonials
[testimonials count='5' order='DESC' orderby='date']

// output your 5 oldest testimonials
[testimonials count='5' order='ASC' orderby='date']

// output 10 testimonials ordered by their post IDs
[testimonials count='10' order='ASC' orderby='ID']

// output 10 testimonials ordered by their parent post's IDs
[testimonials count='10' order='ASC' orderby='parent']

// output 10 testimonials ordered by their title
[testimonials count='10' order='ASC' orderby='title']

// output 10 testimonials ordered by the post slugs
[testimonials count='10' order='ASC' orderby='name']

// output 10 testimonials ordered by their author's name (WordPress users)
[testimonials count='10' order='ASC' orderby='author']

// output 10 testimonials in a random order
[testimonials count='10' order='ASC' orderby='rand']