Creating one of those modules is not that difficult, but if you are not familiar with their syntax, it could end up being a headache. There are many jQuery plugins that have been transferred into a WordPress one already, but what can you do when it is not the case? How do you do when you have found the perfect jQuery plugin for your latest site, but it is not yet available as a WordPress plugin?
In this tutorial, we'll see how you can easily create a WordPress plugin from a jQuery one. We'll review what a jQuery, or a WordPress plugin is actually made of, so we'll find the elements they both have in common. From there, we'll show how it leads us to perform some simple operations to allow us to benefit from our jQuery plugins in a WordPress template.
Thank You for Downloading
I'm glad that you found my work useful. If you did, it might help some other people too. So why not helping me spread the word with a tweet? You could also buy me a coffee to thank me for my code and explanations if you prefer ;).
I hope you'll enjoy your download. Regards. Jeremy.
Part 1: Anatomy of a jQuery Plugin
In this part, we'll analyse what a jQuery plugin is usually made of, where each of those elements should be placed, and how do we usually work with them. Throughout this article, we'll take for example the jQuery FancyBox plugin, (even if there is an existing WordPress adaptation for it already, it's just to have a concrete example).A) The Javascript Source
jQuery is a javascript library, and plugins are there to help us extend the capabilities of it, so they are written following the same jQuery syntax. Every plugin you'll download is written within a javascript file. That is the core of your plugin, what the developer wrote to allow you to enjoy its functionalities. You then have to include this script in your application:
//Include the plugin script
B) The Javascript Snippet
Once you have included the plugin script within your application, most of the time you'll be asked to write a little snippet of code that will make your site or application use the plugin when required. Most of the time, those few lines of code you'll have to write are here to make the plugin work with a particular element of your page, and after a particular event, for example, you say that a FancyBox will appear after a click on a particular link, for example:
//Write the plugin setup <script type="text/javascript"> //Fancybox overlayShow: true, overlayOpacity: 0.7 }); }); </script>
C) Additional Styles
Some plugins sometimes come up with their own stylesheet, modal windows for example. Those styles are required for the plugin to work and therefore need to be included in your application:
//Include the plugin Stylesheet <link rel="stylesheet" type="text/css" href="Path_to/jquery.fancybox.css" />
D) How to set everything up?
Once you have all your files ready, it's a common good practice to put the styles in the header, and the scripts in the footer, just before the closing </body> tag.Part 2: How can we translate this into WordPress?
Now that we understand what the different elements we find in a jQuery plugin are, and where they are supposed to go, let's see how we can do that in WordPress.How to declare a WordPress plugin?
A) In WordPress, plugins are stored in the /wp-content/plugins directory. So just go in there, and create a directory named after your plugin. In our case, we'll just create a directory called FancyBox. B) In this directory, copy all your jQuery plugin files, (script, styles, images or anything that has to be included with the plugin). C) Then, create a file called init.php. Init.php is the particular file we need to build to allow WordPress to recognize our plugin. Open init.php and copy the following information in it:As you can see, in those few lines, we specify a name, a URL, a description and a few other similar piece of information. Those information are being used by WordPress inside the plugin administration interface as you can see on the following picture:
/* Plugin Name: FancyBox //Your plugin name (here we'd write Fancybox) Plugin URI: http://www.jdmweb.com/resources/fancybox //Url of your choice Description: Implementation of the FancyBox for jQuery //Brief PLugin Description Version: 1.0 //Version of your plugin Author: Jeremy Desvaux //Name of the author Author URI: http://jdmweb.com/ //Url of your site License: Creative Commons Attribution-ShareAlike //Licence //Other terms and conditions This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */
From this picture, we see that our 'plugin' has been recognized by WordPress, and contains all the information we wanted. It is time to make it work now. From what we've seen in part one, we need to tell WordPress to put some of our plugin files in the page header, and some in the page footer.
How to specify what goes in the Header ?
What we want to do is to put our plugin stylesheet inside the page header. In html, we do so by adding a link tag in the header. In WordPress, there is a specific method called wp_enqueue_style() (Codex ref here), that allows you to do that. wp_enqueue_style() takes several parameters, mainly the name of your stylesheet and its source for it to work. You can also add dependencies (other styles that need to be included before), and a version number. So In our case, in order to tell our plugin to put its stylesheet inside the header, we would add this inside our init.php file:Line 3 you can see the name we gave to our stylesheet, line 4 we specify its source, with the constant WP_PLUGIN_URL holding the path to the plugin directory. So if the user decides to move its plugin directory the path won't break. Line 5 false means that this stylesheet has no dependencies, and line 6 1.3.1 is the stylesheet version. That's it for the header, in fact, to recapitulate, instead of adding the stylesheet in our header by ourselves as you would do in a normal application, you just ask WordPress to do it for you.
//Add the stylesheet into the header wp_enqueue_style("jquery.fancybox",WP_PLUGIN_URL."/jQuery2Wp_fancybox/jquery.fancybox-1.3.1.css",false,"1.3.1");
How to specify what goes in the Footer ?
In a very similar fashion, to add our scripts inside the WordPress footer, there's a function we can use as well. It is called wp_enqueue_script(), (Codex ref here). wp_enqueue_script() accepts parameters that are very similar to wp_enqueue_style, meaning a script name, path, dependencies, en version. The last parameter is a boolean, and specifies whether you want to enqueue the script in your header (if set to 0), or in your footer (if set to 1), so in our case, because we want to enqueue them in the footer, we'll set the boolean to 1. Let's then use wp_enqueue_script() to add our scripts:Line 3 and 6, you can see wp_enqueue_script in action. We add our plugin scripts by specifying their name, path, dependencies, version and we place them in the footer with the 1 in the end. As you can see, the FancyBox script has one dependency, which is jQuery, and the FancyBox setup has 2, (jQuery and the FancyBox).
//Add the scripts in the footer wp_enqueue_script("jquery"); wp_enqueue_script( "jquery.fancybox", WP_PLUGIN_URL."/jQuery2Wp_fancybox/jquery.fancybox.js", wp_enqueue_script( "jquery.fancyboxsetup", WP_PLUGIN_URL."/jQuery2Wp_fancybox/fancybox-setup.js",
Time To Test
Your plugin is now ready to work. If you go back to the administration interface, in the plugin section, and activate the plugin, WordPress will add your files in the correct places, and your plugin will start working!How to use the plugin on specific pages only?
Now that your plugin is activated, from the code we wrote in our init.php file, WordPress will automatically add our files in the header and the footer of every page of our application. This can be right if you effectively need to use this plugin on nearly every page of your site, but if it is not the case, it's more of a waste of resource, and a bigger page load time for nothing. I'm going to show you a little technique if you'd like to include the plugin only on certain pages. It's very simple The trick is to gather the little snippets of code we just wrote, and to put them into one function, that we're going to call FancyBox_wp_setup():This has actually 2 different effects. It prevents WordPress from including your pages on every page, which is something we wanted, and it also gives you access to the function FancyBox_wp_setup(), that you can call on every page template you want to use the plugin on.
//Group the code inside a function function fancybox_wp_setup(){ wp_enqueue_style( "jquery.fancybox", WP_PLUGIN_URL."/jQuery2Wp_fancybox/jquery.fancybox-1.3.1.css", false, "1.3.1"); wp_enqueue_script("jquery"); wp_enqueue_script( "jquery.fancybox", WP_PLUGIN_URL."/jQuery2Wp_fancybox/jquery.fancybox.js", wp_enqueue_script( "jquery.fancyboxsetup", WP_PLUGIN_URL."/jQuery2Wp_fancybox/fancybox-setup.js", }
Conclusion
When you find the perfect jQuery plugin for your design, integrating it properly for a WordPress use is just a few lines of code away! I hope that next time you'll find a plugin you wish to use, you'll remember this article and you'll turn your plugin into a WordPress one in 5 minutes.8 Responses to How to turn any jQuery plugin into a WordPress one
Leave a Reply
Other Useful Resources

How to integrate the new Twitter api (1.1) in php
On October 11th 2012, Twitter introduced some major changes in its API following its plans to clean things up deeply. As is explaining the t... En savoir plus

How to easily integrate a PayPal Checkout with PHP
PayPal is a renowned payment platform that allows you to accept online payments on your site, by taking care of all the money transactions ... En savoir plus

Slick Videos Presentation With Fancybox
Recently, a friend of mine asked me how it would be possible to play videos directly from within a fancybox. This post presents the solut... En savoir plus
super confusing
Indeed. Still confused.
makes sense thank you
in order to understand it, you have to be familiar with jquery plugin and how to use it
Thanks a lot, it's so helpful.
Perhaps it still confuses to some reader because you didnt give the files.
This was very helpful to me and actually very straight forward to me, however if you don't know much about how WP works under the hood, I can see how it could seem overwhelming and be hard to debug.
For those who want to learn more about how WordPress really works beyond the familiar admin panel... here's a good book, "Professional WordPress Design and Development" by Brad Williams and others....
Thanks JD!
Oddly enough, I did have a problem loading jQuery to get this to work. I have no idea why... perhaps its the theme I am using.
wp_enqueue_script("jquery");
This simple does not load jquery for my plugin as it should. I did a bunch of research and testing... Go figure.
But I was able to load jQuery from Google but it conflicted with the admin panel so I block it from loading if admin. like so.
function my_init_method() {
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"), false, '1.7.1');
wp_enqueue_script('jquery');
}
}
add_action('init', 'my_init_method');
Austrian brand Frey Wille well-known because of its luxury enameled surface jewellery and founded within 1951 in Vienna simply by Michaela Frey, will be remembering its sixtieth loved-one’s birthday. Previewing the newest models at its fresh stand-alone Birmingham store located at forty five Piccadilly (merely reverse the enduring Fortnum and Builder English store) and next to the Regal Academy associated with Disciplines, I had been reminded of what tends to make this diamond jewelry brand unique. frey wille australia http://www.cheapfreywillesale.com