Building a Countdown Timer Widget

We all love a celebration, and now that Easter is over, we look forward to the next occasion. How far away is the next occasion you like to celebrate? Whatever it might be, let's build a widget plugin to add a countdown timer to our sidebar showing how long we have left to wait.


1. Getting a Head Start

There are a number of things we need to do every time we're developing a WordPress plugin, and even more specifically, a widget. Thanks to one of our authors here at Wptuts+, Tom McFarlin, we can get underway quickly by using the WordPress Widget Boilerplate.

To use the WordPress Widget Boilerplate, download it, unzip it, and move the directory widget-boilerplate into your /wp-content/plugins/ directory. Then rename it wptuts-countdowner.

Inside that directory you'll find the main PHP file, plugin.php, which we'll also rename to wptuts-countdowner.php.

Now we're ready to get into the code.


2. Re-Badging the Boilerplate

Inside the wptuts-countdowner.php file is all the heavy lifting done for us by the boilerplate. To begin with, we just need to customise it to reflect the name of our plugin. Then once we've written our own code, we can also ditch the extra bits of the boilerplate that we may not need.

The plugin header information will look like this:

So fix that up with the details of our plugin:

We'll also need to change a few references throughout the boilerplate code to change the generic references to use our plugin name. Most of the places where you'll need to do this are indicated with a 'TODO'.

Find and replace 'widget-name' with 'wptuts-countdowner', and also 'Widget_name' with 'Wptuts_Countdowner'. Now the plugin has its own name!

Now you have a plugin you can activate in your WordPress Dashboard. Once activated, when you look under Appearance -> Widgets, you'll see the beginnings of our widget:

Figure-01

As you can see, it looks pretty generic at the moment. So update the following code:

To reflect the name and description of our widget:

Now we have this:

Figure-02

3. Collect Info From the User

Our widget is going to need a name and date for the event to count down (or up) to.

So, we need to create a form to be used when our widget is added to a sidebar for configuration. The WordPress Widget Boilerplate separates the HTML portion into view files for a nice, clean separation of concerns. We'll setup our variables in the method, and then the form itself in the admin view.

Here's the method. Changes for our plugin indicated with highlights.

You'll note at the end of the method, there's an include for the view. So open up /wp-content/plugins/wptuts-countdowner/views/admin.php. Add the following code into that file:

Now you can refresh the WordPress Dashboard and add the widget to your sidebar, which will look like this:

Figure-03

Sadly, whatever you put in those fields won't save yet, so we need to modify the update method as follows:

Now we have a working widget admin! You can drag the widget into your sidebar, and save the details for an event, like Christmas:

Figure-04

4. Showing on the Front End

Now we have event details for the countdown time, let's show it on the front end of the site in the sidebar.

As with the admin form, we're using a view for the front end too, to keep the HTML separate. Open up your /wp-content/plugins/wptuts-countdowner/views/widget.php file, and add the following:


5. Counting Days

So we have an event and a date / time displaying now, but that doesn't give us a countdown. We need to add a little bit of code in to determine how many days between our event's date, and today's date. Because our date could be in the past or the future, we'll also need to add a suffix word to indicate which.

Here's the code we add to the front end part of the widget:

What we're doing there is getting the current timestamp in seconds for the event, and for today. We then get the human-readable version (i.e. 267 days). We also work out, based on whether the event date is in the past or the future, which suffix word to use.

Now we have a suffix word, we'd better add it to the view:

Now we have something that looks a bit more respectable and makes a bit more sense.

Figure-05

6. Pick a Date

It's a little ugly to have to manually type in a date, so let's add in the jQuery UI Datepicker, seeing as it's included in WordPress.

One thing that isn't included though, is the CSS for the date picker. So grab the CSS file and images directory from Helen Hou-Sandi's WP Admin jQuery UI repository on GitHub, and put them into your /wp-content/plugins/wptuts-countdowner/css/ directory.

Then we need to get WordPress to load them by modifying the boilerplate's register_admin_scripts and register_admin_styles methods, like so:

register_admin_scripts

register_admin_styles

Finally, add your jQuery code into the boilerplate's admin.js file to hook the datepicker up to the field.


7. Cleaning Up

The boilerplate contains a few things we haven't used in this plugin, so it'd be a good idea to lighten the load and remove them. The extras are these files:

  • /css/admin.css
  • /css/widget.css
  • /js/widget.js

And these methods in the wptuts-countdowner.php file:

  • activate
  • deactivate
  • register_widget_scripts
  • register_widget_styles
  • Also line wp_enqueue_style( 'wptuts-countdowner-admin-styles', plugins_url( 'wptuts-countdowner/css/admin.css' ) ); from the register_admin_styles method

Conclusion

There you have it! A WordPress plugin based on the Widget Boilerplate that lets you show how many days until (or since) an event.

I hope you found it useful, please share your thoughts in the comments below.

Tags:

Comments

Related Articles