WP List Testimonials
Plugin version: 1.2
Requires WordPress version: 2.5+
Tested up to WordPress version: 2.8
Download: Click here to download...
Since WordPress custom post type were introduced many more testimonial plugins have been developed. Many of them are a better solution than using WordPress Link to achieve this and I would suggest that you see if one of these suits your purposes.
If you are a developer and would like to continue maintaining the plugin, let me know and I’ll give you commit access to the WordPress repository.
Description
Provides a PHP function wp_list_testimonials to output your blogroll in the format of testimonials usingĀ <blockquote> and <cite> tags.
It uses the notes field of the blogroll link as the main quote, the link name as the cite, and the link description as additional information following the cite if provided.
The function accepts the same arguments as the get_bookmarks WordPress function.
Features
- Manage your testimonials via your Blogroll.
- Include/exclude specific categories.
- Set testimonial ordering
- Simple PHP function to include in your templates.
Installation
1. Download the archive file and uncompress it.
2. Put the “wp_list_testimonials” folder in “wp-content/plugins”
3. Enable in WordPress by visiting the “Plugins” menu and activating it.
You can then implement it in your templates using < ?php wp_list_testimonials(); ?> passing any arguments you require. See the documentation for the WordPress get_bookmarks function.
Change Log
You can track changes to the plugin in theĀ wordpress plugin SVN.


November 3rd, 2008 at 5:49 pm
Hi. I can not make it output any testimonials, from a given category. Even though the same category output with wp_list_bookmarks works fine.
Could you maybe describe a little more as to how the plugin is supposed to be used? Which category?
November 3rd, 2008 at 9:12 pm
To display links as testimonials you can insert the following code into your templates:
< ?php echo wp_list_testimonials(); ?>If you want to display a single category you can:
< ?php echo wp_list_testimonials('category_id=6'); ?>In order for a link to show a testimonial, when adding a link you must enter:
1. Name
2. Web Address (enter # if not required)
3. Notes (in the advanced section of the edit/add link page)
November 19th, 2008 at 10:11 pm
[...] Plugin Homepage » [...]
June 18th, 2009 at 10:09 pm
Thanks for creating this useful plugin.
In order to get it to work in Wordpress 2.7.1 I modified line 84 from:
add_management_page(‘Testimonials’, ‘Testimonials’, 8, ‘testimonials’, ‘sfstst_adminpage’);
to
add_menu_page(‘Testimonials’, ‘Testimonials’, 10, ‘testimonials’, ‘sfstst_adminpage’);
This seems to do the trick, atleast for the widget which is what I needed it for.
Cheers,
~s
July 19th, 2009 at 4:22 pm
Hi Ben, nice work you have done.
I got a simple question:
I’m using wordpress 2.81 and I’m trying to call just a testimonial from a single links category but I get all categories showed up.
This is the code I use:
Any idea? Thanks. Alejandro
July 19th, 2009 at 5:20 pm
Alejandro, have you tried passing either of the following 2 parameters to specify the category you want to use:
wp_list_testimonials('category=21')wp_list_testimonials('category_name=my-cat')
July 20th, 2009 at 2:03 am
Nows fixed, thanks a lot ben!
June 13th, 2012 at 6:11 pm
Ben is there a shortcode we can use to call the function. say i wanted a simple way to implement it in a single post
June 13th, 2012 at 6:37 pm
No shortcodes I’m afraid.
I’m not really continuing to develop this plugin at the moment as since WordPress introduced custom post types there are many better testimonials plugins available – I use TB Testimonials a lot now instead.