If there are several plugins on your WordPress sites there may be more than one copy of jQuery, or other script, that’s loaded, especially if you’re relying on the same scripts for control of the site theme as well. Only one copy of each script should be loading up. More than that represents wasted bandwidth for you and wasted time for your site visitors.
To control what scripts are used on your site it may be wise to learn how to disable scripts from loading in the first place. Similar methods can be applied to streamline the number of scripts or stylesheets loaded onto your site.
Check out this great tutorial on disabling scripts and styles. Thanks for sharing, Justin!
You’ll need to modify the functions.php
file of your theme to remove styles or scripts. The technique is similar in each case.
- Find the ‘handle’ of the script that you’d like to remove.
- Pass the script handle to
wp_deregister_script()
. - Wrap one or more ‘deregistrations’ in a new function, like
my_deregister_javascript()
in this example. - Use
add_action()
withwp_print_scripts
method and add your new function to thefunctions.php
file of your theme.
function my_deregister_javascript() { wp_deregister_script('jquery-form'); } add_action('wp_print_scripts', 'my_deregister_javascript');
From the reference on add_action
in the WordPress codex we can see that two arguments are required, namely the $tag
or handle of the script and the $function_to_add
or the function to which the script is hooked. Two optional parameters can be added to the add_action
function to specify the $priority
or the order in which the functions are executed, and $accepted_args
or the number of arguments that the function accepts. Generically,
add_action( $tag, $function_to_add, $priority, $accepted_args );
In the example above we’ve used ‘wp_print_scripts’ for $tag
and ‘my_deregister_javascript’ for $function_to_add
while the optional $priority
and $accepted_args
were not used. This will hook the new function ‘my_deregister_javascript’ to the action called ‘wp_print_scripts’.
Alternatively, a WordPress plugin could be used to manage the scripts and actions called for on your site. Use Google Libraries is a plugin built to detect the scripts needed for a site to run properly, including all the scripts called for by plugins and the active theme. Scripts are loaded in the proper order taking into account dependencies, whether previously known to WordPress or whether provided by the plugin and theme authors. This plugin uses the content delivery network (CDN) of google to supply the most popular javascript libraries, including jQuery and jQuery UI, among others.