Skip to content

Instantly share code, notes, and snippets.

@rosshanney
Last active December 11, 2015 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosshanney/4558461 to your computer and use it in GitHub Desktop.
Save rosshanney/4558461 to your computer and use it in GitHub Desktop.
Include jQuery migrate script
<?php
/*
Plugin name: Include jQuery migrate script
*/
function gce_include_jquery_migrate() {
wp_enqueue_script( 'jquery-migrate', 'http://code.jquery.com/jquery-migrate-1.2.1.js', array( 'jquery' ) );
}
add_action( 'wp_enqueue_scripts', 'gce_include_jquery_migrate' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment