Building a Client Testimonials Slider Plugin

Nowadays image sliders are the trend and you can see them in every other site. That said, sliding stock photos, even with the most advanced and beautiful animations, don't really build any trust in your customers. A better approach would be to use customer testimonials in our slider. With proper styling this method could be just as visually engaging and makes the user more confident in using (and buying) your product than showing them random stock photos.

"...sliding stock photos ... don't really build any trust in your customers."

We are going to create a client testimonial slider. You will be able to add new client testimonials in the admin, and show them on your website through shortcodes. For sliding the testimonials we will use the free SlideJS jQuery plugin. This way you will have higher control of the animation and effects.


Step 1 Creating the Plugin

We want the new feature as a plugin, so we can use it with any themes. To do this first we create a new folder called testimonialslider in the wp-content/plugins folder ( I'm assuming here that you have WordPress already installed ).

Next create a new .php file in it. Let's call it testimonialplugin.php and write some comments in it so WordPress recognizes it as a plugin.

You can give a lot more information than this ( as you can see in the Plugins section of the WordPress Codex ), but for our purpose this is enough. With these few lines you will be able to see your plugin and activate it through the WordPress plugin manager. So let's do just that and activate it.


Step 2 Creating the Client Testimonials Post Type

If you want to add testimonials in an user friendly way, your best bet is to do that with custom post types. Because the testimonials won't be stand alone posts, we won't use every functionality, just what is necessary for our purpose.

Add this code to our testimonialplugin.php file (before the closing PHP tag)

In the testimonials_init() function we first set some parameters for our post type. We want it to be public, and also to be called "Client Testimonials". The support part of the array might be a little bit confusing. It says that we want our post type to have a title and also the editor where we can write our content. But why do we want to support custom post types?

So that your users don't have to learn any special mark-up if they want to add the name of the client or possibly a homepage!

Making your interface user-friendly is very important when using CMS's, as user friendliness is one of the main reasons why you are using WordPress.


Step 3 Creating the Name and Link Custom Fields

As I said, providing custom fields for your custom values make your plugin much more user friendly. Here you can choose from a few options:

  • Using some special markup
  • Using custom fields the normal way
  • Using default custom fields
  • Using metaboxes
  • Using some custom field plugin

I might write about these options in another tutorial, but basically the first two options are not really user friendly. Creating metaboxes, while not that hard, takes up some time so we go with the third option and add some default custom field boxes.

Add these lines after the previous code block:

In the set_testimonial_custom_fields() function we first check if we are creating a post of type 'testimonials'. If we do, then we are using the add_post_meta() WordPress function to add a custom field. The first parameter is the ID of the post we are creating, the second is the name of the custom field, the third is the default value of the custom field (here we are using an empty string), and the fourth is a boolean value which decides if the field is unique. If set true that means that you can only have one of these fields per post.

With this code you can easily extend the plugin and add even more extra fields to the testimonials post type.


Step 4 Registering the Slide.JS Script

I mentioned in the overview that we are going to use the jQuery plugin Slide.JS to slide our testimonials. To do that we should include the script in our plugin.

Downloading Slide.js

First head to the SlideJS hompage and download it. If you want to do some extra customization on your slideshow, you might want to bookmark the docs page, as you can read the documentation of the plugin there.

So, after you downloaded the .zip file, extract it. Go to the Slides/source folder (in the .zip file) and extract the file slides.min.jquery.js to your plugin folder. You might want to create a js folder in your plugin directory to save it in so all of your JavaScript files will be in one place.

Adding the Script to Our Plugin

Now let's tell WordPress to include our scripts if our plugin is active

We are using the wp_print_scripts hook to add the scripts to the head of the pages. In the testimonials_register_scripts function we are first registering, then enqueuing the scripts. Here are some things to look out for...

"...you should only load the scripts (and styles) that you need"

We're using the conditional tag with the is_admin() WordPress function and only add the script to the head if we are not in the administration dashboard. It is a small optimization. Basically you should only load the scripts (and styles) that you need, and only when you need them.

When we're using the wp_register_script() function to register our slides.min.jquery.js plugin, we set jQuery as a dependency, so they will be loaded in the correct order. Last, don't worry about the script.js file yet, we will create it shortly.


Step 5 Displaying the Testimonials

Now let's display our testimonials! In this step we create a function that can display the testimonials with the correct markup. Take a look at the code first, and don't be afraid, it might be a bit more complex than the previous code snippets but I will explain it all for you.

Let's see the code step by step! First we are setting the parameters of our side loop. We are only interested in 'testimonials' type posts and we only want five of them. Then we are creating the $results variable. We will store our HTML markup in it. If you check the SlideJS docs or examples you can see that we need some specific mark-up for the plugin to work. We are creating it and concatenating everything to the $results variable. In the loop we get the content of our testimonial and also get the values of the Client name and Link custom fields (if we have a link the Client name will be clickable). We also use some extra markup so it will be easy if you want to style them.


Step 6 Creating the Shortcode

Our slider is not fully functional yet, as it isn't sliding our posts, but it would be good if we could see if it displays our testimonials correctly at least. So let's add a shortcode so we can see what we are displaying!

As you can see, adding shortcode support is really easy. Now if write [client testimonials] in our page or posts we can see the client testimonials, as you can see in the image (I added some testimonials, so we have something to display).


Step 7 Making the Testimonials Slide

Now that we are sure that our testimonials are displaying correctly let's make them slide! Do you remember the script.js file that we added to the head of our page? Now we will create it! So, if you have not already done that, create an empty file called script.js in the js folder in the plugin directory and add the following code:

I didn't want pagination for the sliders and put it to autoplay, so it's discretely sliding at the top or where you want it to. If you want to use extra features of SlideJS you can easily do that from reading its documentation.

Tags:

Comments

Related Articles