#Introduction
A basic plugin to display testimonials. See shortcode examples below
##Options
- Show one specific testimonial:
[testimonals id="1"]
; use the post ID as theid
parameter - Show only 5 testimonials:
[testimonials posts_per_page="5"]
- Order by date:
[testimonials orderby="date" order="desc"]
;supports all the standard WordPress order parameters - Show only testimonials from a given category:
[testimonials tax_taxonomy="post_tag" tax_field="slug" tax_terms="home-page"]
; supports these standard WordPress taxonomy parameters, prefixed bytax_
:taxonomy
(defaults to “category”)field
terms
operator
##Changelog
- Add support for order, orderby, posts_per_page, and taxonomy parameters
- Improve output display
- Initial plugin