Can I display all testimonials in one page??
Does this plugin support pagination?
Can I display all testimonials in one page??
Does this plugin support pagination?
This plugin creates a 'testimonial' custom post type. You can create custom queries with query_posts:
query_posts( array('post_type' => 'testimonial'));
I will try to add a shortcode in the future to display all testimonials as a list.
hey hal, i'm interested in this as well - where exactly would i place the: query_posts( array('post_type' => 'testimonial'));
The query_posts would have to be done in a template. More information about that here:
http://codex.wordpress.org/Function_Reference/query_posts
You could also try looking for a plugin that list custom types. A quick search found this:
http://wordpress.org/extend/plugins/custom-post-type-list-shortcode/
I haven't used it but I'm sure something out there exists.
Version 1.2 has just been submitted with the ability to display all testimonials as a list.
New attributes added to the shortcode:
[testimonial_rotator id=359 hide_title=true format=list limit=25]
You must log in to post.