Testimonials Cycle Slideshow Reference

The [testimonials_cycle] shortcode displays your testimonials in a highly customizable slideshow.

Use the attributes below to customize the slideshow, and control which testimonials are selected. All attributes are optional.

[testimonials_cycle
    'testimonials_link':  '', // URL of the "View More Testimonials" link. Set on the options panel
    'count':  -1, // Limit the number of testimonials to display. Pass -1 to display all (default).    
    'show_title':  0, // Output the title of the testimonial. (1 = yes, 0 = no)
    'use_excerpt':  false, // if true, use the excerpt instead of the full testimonial
    'category':  '', // limit the random selection to this category. Expects a category slug, e.g., 'my-category'
    'show_thumbs':  true, // If true, output the Featured Image
    'show_rating':  'stars', // how to display the rating (either as stars, or as text before or after the testimonial). Options: 'stars', 'before', 'after'.
    'theme': 'default_style', // the theme to use to display this testimonial
    'show_date':  true, // if true, output the date of the testimonial. Set to false to hide the date.
    'show_other':  true, // if true, output the "Product / Location / Other" field. Set to false to hide.
    'width':  false, // enforce a maximum width. Expects a pixel value, as an integer (e.g., '300' for 300px)
    'hide_view_more':  0, // Output the "View More Testimonials" link, which takes the user to the full testimonials page. Set to 1 to hide the link, 0 to show it.
    'output_schema_markup':  true, // Whether to output hidden schema.org markup for search engines like Google to parse. Good for SEO. Set to false to disable.
    'orderby': 'date', // Which key to use for sorting the list of testimonials. Valid options: 'ID', 'author', 'title', 'name', 'date', 'modified', 'parent', 'rand', 'menu_order'
    'order': 'DESC', // The direction to sort the list. Options: 'ASC', 'DESC' (default is 'DESC')
    'transition': 'scrollHorz', // the animation to use between testimonials. Options: 'scrollHorz', 'scrollVert', 'fade', 'carousel', 'flipHorz', 'flipVert', 'tileSlide'
    'timer': '5000', // time to show each testimonial before transitioning to the next testimonial. In microseconds, so multiply seconds by 1000 to get your value (e.g., 8 seconds = 8000)
    'auto_height': 'container', // Fix the height of the slideshow to the height of the tallest testimonial. Set to false to have the slideshow resize on each transition.
    'show_pager_icons': false, // true to show the pager icons, false to hide them
    'testimonials_per_slide': 1, // how many testimonials to display on each slide
    'pause_on_hover': false, // if true, the slideshow will pause when the mouse is over it
    'prev_next': false, // if true, display the previous and next buttons. If false, hide them.
    'paused': false, // if true, start the slideshow in a paused state
    'display_pagers_above': false, // if true, show the pager icons above the slideshow. If false (default), show them under the slideshow (their normal position)
    'show_log': WP_DEBUG, // whether to output cycle2's debug information to the Javascript console. Defaults to the value of WP_DEBUG
]