This guide will show how to embed FV Testimonials into a page/post and into a template.
FV Testimonials use standard wordpress shortcodes since version 1.0.
Following shortcode will insert all testimonials:
testimonials show="all"
Following list will describe other possibilities that can be used within the testimonials shortcode:
show="featured"
Show only featured testimonialsinclude="12,56,85"
Show only selected testimonials, comma separated list of testimonial ids can be usedexclude="45,78"
Exclude these testimonials, comma separated list of testimonial ids can be usedimage="medium"
Use medium size of images, other options: small, medium, large, originalcategory="1,5,3"
Show testimonials from categories, comma separated list of category ids can be used (only PRO version)template=2
Use template number 2 (Only PRO version)
Examples
Show featured testimonials from categories 1 and 2:
testimonials show="featured" category="1,2"
Show all testimonials from category 3 as well as testimonials with id 13 and 14:
testimonials category=3 include="14,15"
Show testimonials from category 1, use template number 2:
testimonials category=1 template=2
Show all testimonials, use template 1 and small image size:
testimonials show="all" image="small" template=1